Groovy - While 语句
while 语句的语法如下所示 −
while(condition) { statement #1 statement #2 ... }
while 语句通过首先评估条件表达式(布尔值)来执行,如果结果为真,则执行 while 循环中的语句。 从评估 while 语句中的条件开始重复该过程。 这个循环一直持续到条件评估为假。 当条件变为假时,循环终止。 然后程序逻辑继续紧跟在 while 语句之后的语句。 下图显示了此循环的图解说明。
以下是 while 循环语句的示例 −
class Example { static void main(String[] args) { int count = 0; while(count<5) { println(count); count++; } } }
在上面的例子中,我们首先将 count 整数变量的值初始化为 0。然后我们在 while 循环中的条件是我们正在评估表达式的条件,即 count 应该小于 5。直到 count 小于 5,我们将打印 count 的值,然后增加 count 的值。 上述代码的输出将是 −
0 1 2 3 4