Questions tagged «halting-problem»

15
Java中的无限循环
请看下面的whileJava无限循环。它导致其下面的语句的编译时错误。 while(true) { System.out.println("inside while"); } System.out.println("while terminated"); //Unreachable statement - compiler-error. 以下相同的无限while循环可正常工作,并且不会发出任何错误,在这些错误中,我只是将条件替换为布尔变量。 boolean b=true; while(b) { System.out.println("inside while"); } System.out.println("while terminated"); //No error here. 同样在第二种情况下,循环之后的语句显然不可访问,因为布尔变量b为true,但编译器根本没有抱怨。为什么? 编辑:while显然,以下版本的卡在无限循环中,但是即使if循环内的条件始终存在false,因此循环下面的语句也不会对该语句下的语句发出任何编译器错误,因此循环永远不会返回,并且可以由编译器在该循环中确定。编译时本身。 while(true) { if(false) { break; } System.out.println("inside while"); } System.out.println("while terminated"); //No error here. while(true) { if(false) { //if true then also return; …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.