一而 在Java编程语言的循环语句重复执行一个目标语句,只要给定的条件为真。
while循环的语法是-
while(Boolean_expression) { //声明 }
这里,语句(多个)可以是单一语句或语句块。条件可以是任何表达式,并且true是任何非零值。
执行时,如果boolean_expression结果为true,则将执行循环内的动作。只要表达式结果为真,这将继续。
当条件变为假时,程序控制传递到紧随循环的那一行。
在这里,while循环的关键是循环可能永远不会运行。当测试表达式并且结果为false时,将跳过循环体,并执行while循环之后的第一条语句。
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