
Optimization
Programming Throwdown
00:00
How to Optimize a Fore Loop in Java
Compiler will try to do a variety of tricks for you, about keeping your variables in registers instead of in memory. Can do things that are complicated, like loop unrolling. Sometimes the compiler doesn't know that can be done, and you need to do it by hand. I wouldn't recommend kind of starting off there as an optimization setting. Some time gain benefit by hand unrolling your loops.
Transcript
Play full episode