Possible Duplicate:
Infinite loop application - for(;;)
I am a Java developer, and I saw this in one of the classes:
for(;;){
something goes here
}
What does this loop mean? When would we have to use it?
Thanks
I am a Java developer, and I saw this in one of the classes:
What does this loop mean? When would we have to use it? Thanks |
||||
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
It's an infinite loop, an equivalent of this could be
But they both mean the same thing in this situation. |
|||
|
|
|
It's an infinite loop. Similar to For simple break conditions, it's easier to just put them in the loop statement. |
|||
|
|
|
It's the same as
However it's less used and in general should be avoided. |
|||||
|
|
It's an infinite loop, equivalent to more readable Such a loop is not used often, it typically represents operations that should continue running as long as the application runs. E.g:
The only way to escape such a loop is:
|
|||
|
|
|
This is an infinite loop. The idea is that a break condition is inside the loop
|
|||
|
|
for (;/*ever*/;)to make it more obvious. – Marko Topolnik Nov 13 '12 at 22:29