インフォ FAQ
言語 環境比較
 
Index
 
  Processing 1.0 _ALPHAリファレンスは開発途中である。
もしエラーやコメントがあれば、reas at groupc.netへメールして下さい。
Name  

++ (インクリメント)

   
Examples  
int a = 0;    // "a" を 0に設定 
int b = a++;  // "b" を 1に設定 
int c = b++;  // "c" を 2に設定 

Description  

整数の値を1増やす。i = i + 1の演算と同じことをいう。もし変数iの値が5ならば、条件i++iの値を6に増やす。

 

   
Syntax  
value++
   
Parameters  
value   整数

   
Usage   Web & Application
   
Related   + (加算)
+= (加算代入)
-- (デクリメント)
   
© 2004- 2001 Massachusetts Institute of Technology and Interaction Design Institute Ivrea
Processing is an open project initiated by Ben Fry and Casey Reas