What is the difference between a standard while(true) loop and for(;;)?
while(true)
for(;;)
Is there any, or will both be mapped to the same bytecode after com
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 while(true)