Java-while循环


Java 编程语言中的while循环语句,只要给定的条件为真,就会重复执行目标语句。

句法

while 循环的语法是 -

while(Boolean_expression) {
   // Statements
}

这里,语句可以是单个语句或语句块。条件可以是任何表达式,true 是任何非零值。

执行时,如果boolean_expression结果为 true,则将执行循环内的操作。只要表达式结果为真,这种情况就会持续下去。

当条件变为假时,程序控制将传递到紧随循环后面的行。

流程图

Java While 循环

在这里,while循环的关键点是该循环可能永远不会运行。当测试表达式且结果为 false 时,将跳过循环体并执行 while 循环之后的第一条语句。

实施例1

在此示例中,我们展示了如何使用 while 循环来打印从 10 到 19 的数字。这里我们初始化了一个值为 10 的 int 变量 x。然后在 while 循环中,我们将 x 检查为 less大于 20 并且在 while 循环中,我们打印 x 的值并将 x 的值增加 1。While 循环将运行直到 x 变为 20。一旦 x 为 20,循环将停止执行并程序退出。

public class Test {

   public static void main(String args[]) {
      int x = 10;

      while( x < 20 ) {
         System.out.print("value of x : " + x );
         x++;
         System.out.print("\n");
      }
   }
}

输出

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

实施例2

在此示例中,我们展示了如何使用 while 循环来打印数组的内容。在这里,我们创建一个整数数组并为其初始化一些值。我们创建了一个名为 index 的变量来表示迭代数组时的索引。在 while 循环中,我们检查索引是否小于数组的大小,并使用索引表示法打印数组的元素。索引变量增加 1,循环继续,直到索引成为数组的 sie 并退出循环。

public class Test {

   public static void main(String args[]) {
      int [] numbers = {10, 20, 30, 40, 50};
      int index = 0;

      while( index < 5 ) {
         System.out.print("value of item : " + numbers[index] );
         index++;
         System.out.print("\n");
      }
   }
}

输出

value of item : 10
value of item : 20
value of item : 30
value of item : 40
value of item : 50

实施例3

在此示例中,我们使用 while 循环展示无限循环。它将继续打印数字,直到您按 ctrl+c 终止程序。

public class Test {

   public static void main(String args[]) {
      int x = 10;

      while( true ) {
         System.out.print("value of x : " + x );
         x++;
         System.out.print("\n");
      }
   }
}

输出

value of item : 10
value of item : 20
value of item : 30
value of item : 40
value of item : 50
...
ctrl+c