Groovy - 继续声明


continue 语句是对break 语句的补充。它的使用仅限于 while 和 for 循环。当执行 continue 语句时,控制立即传递到最近的封闭循环的测试条件,以确定循环是否应该继续。对于该特定循环迭代,循环体中的所有后续语句都将被忽略。

下图显示了 continue 语句的图解解释 -

继续声明

以下是continue语句的示例-

现场演示
class Example {
   static void main(String[] args) {
      int[] array = [0,1,2,3];
		
      for(int i in array) {
         if(i == 2)
         continue;
         println(i);
      }
   }
}

上述代码的输出将是 -

0 
1 
3

groovy_loops.htm