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

Source: Internet
Author: User
Tags goto

What's the difference between a standard while(true) loop and for(;;) ?

Is there any, or would both be mapped to the same bytecode after compiling?

Semantically, they ' re completely equivalent. It's a matter of taste, but I think while(true) looks cleaner, and are easier to read and understand at first glance. In Java neither of them causes compiler warnings.

At the bytecodelevel, it might depend on the compiler and the level of optimizations, but 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.



It's up-to-you which one-to-use. Cause they is equals to compiler.

public class Test {    public static void main(String[] args) {        while (true) {            System.out.println("Hi");        }    }}javac -g:none Test.javarename Test.class Test1.classpublic class Test {    public static void main(String[] args) {        for (;;) {            System.out.println("Hi");        }    }}# javac -g:none Test.java# mv Test.class Test2.class# diff -s Test1.class Test2.classFiles Test1.class and Test2.class are identical

Http://stackoverflow.com/questions/8880870/java-for-vs-whiletrue

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

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.