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


Processing () (parentheses)用法及代碼示例


Processing, () (parentheses)用法介紹。

用法

  • function()
  • function(p1, ..., pN)
  • structure(expression)

參數

  • function 任何函數
  • p1, ..., pN 特定於函數的參數列表
  • structure if、for、while等控製結構
  • expressions 任何有效的表達式或表達式組

說明

分組和包含表達式和參數。括號具有與函數和結構相關的多種函數。它們用於包含傳遞給函數和控製結構的參數列表,它們用於對表達式進行分組以控製執行順序。有些函數沒有參數,在這種情況下,括號之間的空格是空白的。

例子

int a;
a = (4 + 3) * 2;       // Grouping expressions
if (a > 10) {          // Containing expressions
  line(a, 0, a, 100);  // Containing a list of parameters
}

有關的

相關用法


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