Index
 
  Reference for Wiring 1.0 (ALPHA) 0017+. If you have a previous version, use the reference included with your software. If you see any errors or have any comments, let us know.
Name  

() (parentheses)

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

Description   Grouping and containing expressions and parameters. Parentheses have multiple functions relating to functions and structures. They are used to contain a list of parameters passed to functions and control structures and they are used to group expressions to control the order of execution. Some functions have no parameters and in this case, the space between parentheses is blank.

표현식이나 파라메터를 구루핑과 내포 합니다.  괄호는 함수와 구조에서 여러 기능을 가지고 있습니다. 함수로 파라메터 리스트를 전달할때 사용합니다. 실행 순서를 지정할때 사용합니다. 어떤 함수는 파라메터를 필요로 하지 않습니다만 비여있는 괄호를 사용합니다.

   
Syntax  
function()
function(p1, ..., pN)
structure(expression)
   
Parameters  
function   any function

p1...pN   list of parameters specific to the function

structure   Control structure such as if(), for(), while()

expressions   any valid expression or group of expression

   
Usage   Web & Application
   
Related   , (comma)