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


Processing if用法及代碼示例


Processing, if用法介紹。

用法

  • if (test) {
  • statements
  • }

參數

  • test 任何計算結果為真或假的有效表達式
  • statements 一個或多個要執行的語句

說明

允許程序決定執行哪些代碼。如果 test 評估為 true ,則執行包含在塊中的語句,如果 test 評估為 false 則不執行語句。

例子

for (int i = 5; i < height; i += 5) {
  stroke(255);   // Set the color to white
  if (i < 35) {  // When 'i' is less than 35...
    stroke(0);   //...set the color to black
  }
  line(30, i, 80, i);
}
Image output for example 1

有關的

相關用法


注:本文由純淨天空篩選整理自processing.org大神的英文原創作品 if。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。