在Java中打破for循环

在我的代码中,我有一个循环遍历代码的方法,直到满足条件。

有没有办法打破这个循环?

所以,如果我们看下面的代码,当我们到达“15”时,如果我们想要跳出这个循环呢?

public class Test { public static void main(String args[]) { for(int x = 10; x < 20; x = x+1) { System.out.print("value of x : " + x ); System.out.print("\n"); } } } Outputs: value of x : 10 value of x : 11 value of x : 12 value of x : 13 value of x : 14 value of x : 15 value of x : 16 value of x : 17 value of x : 18 value of x : 19 

我试过以下无济于事:

 public class Test { public static void main(String args[]) { boolean breakLoop = false; while (!breakLoop) { for(int x = 10; x < 20; x = x+1) { System.out.print("value of x : " + x ); System.out.print("\n"); if (x = 15) { breakLoop = true; } } } } } 

我试过一个循环:

 public class Test { public static void main(String args[]) { breakLoop: for(int x = 10; x < 20; x = x+1) { System.out.print("value of x : " + x ); System.out.print("\n"); if (x = 15) { break breakLoop; } } } } 

唯一能达到我想要的是通过跳出for循环,我不能用它来替代它,如果等等。

编辑:

这只是作为一个例子,这不是我试图让它实现的代码。 现在我已经通过在每个循环初始化之后放置多个IF语句来解决这个问题。 之前它会因缺lessrest而跳出循环的一部分;

break; 是什么你需要摆脱任何循环语句像, whiledo-while

就你而言,它会是这样的: –

 for(int x = 10; x < 20; x++) { // The below condition can be present before or after your sysouts, depending on your needs. if(x == 15){ break; // A unlabeled break is enough. You don't need a labeled break here. } System.out.print("value of x : " + x ); System.out.print("\n"); } 

您可以使用:

 for (int x = 0; x < 10; x++) { if (x == 5) { // If x is 5, then break it. break; } } 

如果由于某种原因,您不想使用中断指令(例如,如果您认为下次读取程序时会中断读取stream程),则可以尝试以下操作:

 boolean test = true; for (int i = 0; i < 1220 && test; i++) { System.out.println(i); if (i == 20) { test = false; } } 

for循环的第二个参数是一个布尔testing。 如果testing结果为真,循环将停止。 如果你喜欢,你可以使用不仅仅是一个简单的mathtesting。 否则,一个简单的rest也可以做到这一点,正如其他人所说:

 for (int i = 0; i < 1220 ; i++) { System.out.println(i); if (i == 20) { break; } } 
 public class Test { public static void main(String args[]) { for(int x = 10; x < 20; x = x+1) { if(x==15) break; System.out.print("value of x : " + x ); System.out.print("\n"); } } } 

怎么样

 for(int k=0;k<10;k=k+2) { if(k==2) { break; } System.out.println(k); } 

另一种方式是标注循环

 myloop: for (int i=0; i < 5; i++) { for (int j=0; j < 5; j++) { if (i * j > 6) { System.out.println("Breaking"); break myloop; } System.out.println(i + " " + j); } } 

为了更好的解释,你可以在这里检查