What is the difference between a standard while(true) loop and for(;;)?
Is there any, or will both be mapped to the same bytecode after compiling?
|
What is the difference between a standard Is there any, or will both be mapped to the same bytecode after compiling? |
|||||||||||
|
|
Semantically, they're completely equivalent. It's a matter of taste, but I think At the bytecode level, it might depend on the compiler and the level of optimizations, but in principle the code emitted should be the same. EDIT: On my compiler, using the Bytecode Outline plugin,the bytecode for
And the bytecode for
So yes, at least for me, they're identical. |
||||
|
It's up to which one to use. Cause they are equals to compiler.
|
|||||
|
|
On Oracle Java 7 you get the same byte code. You cannot tell from the byte code which was using in the original. Which is best is a matter of taste. I use |
|||
|
|
|
JVM will find the best way to make bytecode and in both cases should do the same.So I think there's no difference. while(true) is just prettier. |
|||
|
|
|
Functionally there is no difference. Any efficiency gained or lost by a difference in bytecode will likely be insignificant compared to any instruction you would run in the body of the loop. |
|||
|
|
|
I have looked at the generated byte code and found that since the condition is always true (at compile time), the compiler will compile away the test and just branch always back to the top of the loop. I assume that a continue statement will also do a branch always back to the top of the loop. So, not only does it not make any difference, there isn't even any code generated to test anything. |
|||
|
|