繁体   English   中英

无限循环

[英]Infinite for loop

这段代码可以正常工作:

public class Main {

    public static void main(String[] args) {
        long startTime = System.currentTimeMillis();
        long endTime = startTime + 60000;
        long index = 0;

        while (true) {
            double x = Math.sqrt(index);
            long now = System.currentTimeMillis();
            if (now > endTime) {
                break;
            }

            index++;
        }
        System.out.println(index + " loops in one minute.");
    }
}

但是后来,我尝试将其重写为for loop ,并且陷入了无限循环。

public class Main {

    public static void main(String[] args) {
        long startTime = System.currentTimeMillis();
        long endTime = startTime + 60000;

        int i = 0;
        for (long now = 0; now < endTime; i++) {
            Math.sqrt(i);
            now = System.currentTimeMillis();
            System.out.println("now" + now);
            System.out.println("end" + endTime);
        }
    }

    System.out.println(i+"calculations done in one minute");
}

您的第二个示例不是无限循环,请等待1分钟。

long endTime = startTime + 60000;

将endTime设置为将来的60000毫秒,即60秒,即1分钟。

标准输出只是打印速度非常快。

Thread.sleep(1000L)放入循环中,您将看到61条语句在结束之前被打印。

long endTime = 1378140843604L; // for example
for (long now = 0; now < endTime; i++) {
    now = System.currentTimeMillis(); // will be 1378140783604, 1378140784604, 1378140785604 and so on
    System.out.println("now" + now); 
    System.out.println("end" + endTime);
    Thread.sleep(1000L);
}

这对我有用:

public class Main {

public static void main(String[] args) {
    long startTime = System.currentTimeMillis();
    long endTime = startTime + 60000;

    int i = 0;
    for (long now = 0; now < endTime; i++) {
        Math.sqrt(i);
        now = System.currentTimeMillis();
        System.out.println("now" + now);
        System.out.println("end" + endTime);
    }

    System.out.println(i+"calculations done in one minute");
}
}

我和你之间的唯一区别是我的意思:(你不在主要方法之内)

System.out.println(i+"calculations done in one minute");

您还应该意识到,通过循环只需几微秒,因此您将获得巨大的输出。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM