Groovy - Continue 语句



continue 语句是对 break 语句的补充。只能用于 while 和 for 循环中。执行 continue 语句时,控件会立即传递到最近包围的循环测试条件中以确定是否应继续循环。循环体中所有后续语句都将针对此特定循环迭代而被忽略。

下图显示了 continue 语句的示意图说明 −

Continue Statement

以下是 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
广告