Java: for(;;) vs. while(true)

后端 未结 9 1889
予麋鹿
予麋鹿 2020-12-01 15:29

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 com

相关标签:
9条回答
  • 2020-12-01 16:16

    Only the difference is required time for the parser, the two distinct expressions include different number of tokens to be parsed however the computation time difference is very low and the compiled bytecode is the same for two cases.

    0 讨论(0)
  • 2020-12-01 16:18

    It compiles down to the same byte code, and it is a matter of taste which construct you prefer.

    I read a lot of source code from the Oracle distributed JDK, and I cannot easily remember that I've seen a while(true) statement in their code, but I have seen a whole lot of for(;;) statements in their code. Me personally, I favor for(;;) and my reasoning goes a bit like this:

    The while-loop "should" require a boolean expression, not a boolean constant. while(true) is a bit like if(true), both of which I think has been made legal only for the added comfort of the masses. An empty while() does not compile. Adding the true in there feels a bit like hacking.

    for(;;) on the other hand is a "real loop", albeit an empty one. Also, it saves you a couple of keystrokes! =) (not that it matter)

    Therefore, and I know it sounds crazy, but although while(true) reads better in English, I think for(;;) better express your intent and is more akin to the Java programming language. Eternal loops should be avoided anyways. When I read for(;;), I feel secure knowing the developer will brake the execution path somewhere. When I read while(true), I just cannot be that sure anymore. But hey, maybe that's just me! We're all free to pick our own flavor.

    0 讨论(0)
  • 2020-12-01 16:20

    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:

       L0
        LINENUMBER 6 L0
       FRAME SAME
        GOTO L0
    

    And the bytecode for while(true){} looks like this:

       L0
        LINENUMBER 6 L0
       FRAME SAME
        GOTO L0
    

    So yes, at least for me, they're identical.

    0 讨论(0)
提交回复
热议问题