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?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Semantically, they’re completely equivalent. It’s a matter of taste, but I think
while(true)looks cleaner, and is easier to read and understand at first glance. In Java neither of them causes compiler warnings.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
for(;;){}looks like this:And the bytecode for
while(true){}looks like this:So yes, at least for me, they’re identical.