FAQ
 
 
Cover  \ Exhibition  \ Learning  \ Reference  \ Download  \ Discourse   
      Language \ Environment \ Libraries \ Comparison
 
   
   
Abridged (A-Z) \ Complete (A-Z)  
   
  Reference for Processing (BETA) version 91+. 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  

++ (increment)

   
Examples  
int a = 1;   // Sets "a" to 1 
int b = a++; // Sets "b" to 1, then increments "a" to 2 
int c = a;   // Sets "c" to 2 

Description   Increases the value of an integer variable by 1. Equivalent to the operation i = i + 1. If the value of the variable i is five, then the expression i++ increases the value of i to 6.
   
Syntax  
value++
   
Parameters  
value   int

   
Usage   Web & Application
   
Related   + (add)
+= (add assign)
-- (decrement)
 
 






   
 
Updated: Fri Jul 15 16:35:42 PDT 2005
 
 








Creative Commons License
 
  Processing is an open project initiated by Ben Fry and Casey Reas  
  © Info