77

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

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

因此,如果我们看下面的代码,如果我们想在到达“15”时跳出这个 for 循环怎么办?

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 语句来解决这个问题。在它由于缺少中断而只能跳出循环的一部分之前;

4

5 回答 5

178

break;是你需要打破任何循环语句,如for,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");
}
于 2013-03-07T15:34:45.897 回答
20

如果由于某种原因您不想使用 break 指令(例如,如果您认为它会在您下次阅读程序时打乱您的阅读流程),您可以尝试以下操作:

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

for 循环的第二个参数是布尔测试。如果测试结果为真,则循环将停止。如果您愿意,您可以使用的不仅仅是简单的数学测试。否则,正如其他人所说,一个简单的休息也可以解决问题:

for (int i = 0; i < 1220 ; i++) {
    System.out.println(i);
    if (i == 20) {
        break;
    }
 }
于 2013-03-07T16:11:23.343 回答
18

您可以使用:

for (int x = 0; x < 10; x++) {
  if (x == 5) { // If x is 5, then break it.
    break;
  }
}
于 2013-03-07T15:35:08.867 回答
12

怎么样

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);
              }
          }

如需更好的解释,您可以在此处查看

于 2013-03-07T15:36:13.480 回答
3
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");
  }
}
}
于 2013-03-07T15:36:29.377 回答