Files
processing4/web/reference/API/int.xml
2005-01-27 06:48:42 +00:00

61 lines
1.3 KiB
XML

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<root>
<name>int</name>
<category>Data</category>
<subcategory>Primitive</subcategory>
<usage>Web &amp; Application</usage>
<example>
<image></image>
<code>
int a; // Declare variable "a" of type int
a = 23; // Assign "a" the value 23
int b = -256; // Declare variable "b" and assign it the value -256
int c = a + b; // Declare variable "c" and assign it the sum of "a" and "b"
</code>
</example>
<description>
Datatype for integers, numbers without a decimal point. Integers can be as large as 2,147,483,647 and as low as -2,147,483,648. They are stored as 32 bits of information. The first time a variable is written, it must be declared with a statement expressing its datatype. Subsequent uses of this variable must not reference the datatype because Processing will think the variable is being declared again.
</description>
<syntax>
int <c>var</c>
int <c>var</c> = <c>value</c>
</syntax>
<parameter>
<label>var</label>
<description>variable name referencing the value</description>
</parameter>
<parameter>
<label>value</label>
<description>any integer value</description>
</parameter>
<returns></returns>
<related>
splitInts()
float
</related>
<availability>1.0</availability>
<type>Datatype</type>
<partof>PDE</partof>
</root>