当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Processing continue用法及代码示例


Processing, continue用法介绍。

用法

  • continue

说明

当在 forwhile 内运行时,它会跳过块的其余部分并开始下一次迭代。

例子

for (int i = 0; i < 100; i += 10) {
  if (i == 70) {  // If 'i' is 70,
    continue;     // skip to the next iteration,
  }               // therefore not drawing the line.
  line(i, 0, i, height);
}

有关的

相关用法


注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 continue。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。