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  

int()

   
Examples  
float f = 65.0; 
int i = int(f); 
println(f + " : " + i);  // Prints "65.0 : 65" 
 
char c = 'E'; 
i = int(c); 
println(c + " : " + i);  // Prints "E : 69" 

Description   Converts a primitive datatype, string, or array to its integer representation.
   
Syntax  
int(value)
   
Parameters  
value   float, char, byte, boolean, String, float[], char[], byte[], boolean[], String[]

   
Returns   int
   
Usage   Web & Application
   
Related   int
float()
 
 






   
 
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