當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。