位置:首页 > Java技术 > java实例在线教程 > Java使用break语句

Java使用break语句

如何使用break跳出循环的方法?

解决方法

本示例使用'break'跳出循环。 

public class Main {
   public static void main(String[] args) {
      int[] intary = { 99,12,22,34,45,67,5678,8990 };
      int no = 5678;
      int i = 0;
      boolean found = false;
      for ( ; i < intary.length; i++) {
         if (intary[i] == no) {
            found = true;
            break;
         }
      }
      if (found) {
         System.out.println("Found the no: " + no 
         + " at  index: " + i);
      } 
      else {
         System.out.println(no + "not found  in the array");
      }
   }
}

结果

上面的代码示例将产生以下结果。

Found the no: 5678 at  index: 6