Possible Duplicate:
When implementing an infinite loop, is there a difference in using while(1) vs for(;;) vs goto (in C)?
In languages where while (true) or for (;;) both mean "loop forever", which should I use?
In languages where |
|||
| show 1 more comment |
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.
|
In my opinion, Any half-decent compiler will compile both identically (at least with optimizations). |
|||||||||||||||
|
has no obvious semantic value. Whereas
could pretty much be understood by any reasonably intelligent non-programmer due to being far closer to the natural-language equivalent. |
|||||
|
|
In order of importance:
Order of 3 and 4 could be reversed in some circumstances ;) EDIT: I personally prefer "while (true)" (including space), but I seldomly arrive at point 5 in the list. |
||||
|
I prefer while(true) because I think it is more intuitive, elegant and philosophically interesting. However it is ultimately just a matter of style. |
|||
|
|
|
any decent developer will pass over both without getting confused. use whatever you feel like. |
|||
|
|
|
I prefer
It demotes the implementation choice for the infinite loop concept from the prominent place of the start of the loop. If this is C++ or C, just create your own macro to abstract the concept better (in this case, the use of
This can be somehow adapted to C# too:
( |
|||||
|
|
A question I asked recently: http://stackoverflow.com/questions/3347477/difference-between-for-and-while-true-in-c Although mine was language specific, several of them expressed views on this very subject. Personally, I prefer All in all, it's pretty moot (in a good way). Developers you work with should be able to understand that they're the same thing, and (at least in C# according to my question) they compile to the exact same thing. Anybody that complains because you did one instead of the other seems like they have their priorities a touch out of order. |
|||
|
|
while 1+1=2 do(Delphi syntax) just because it looks cool (and is very clear, intuitively). I suppose the optimizing compiler realizes that1+1=2is the constant expressiontrue. :) – Andreas Rejbrand Aug 6 '10 at 15:46