This reference is for Processing 3.0+. If you have a previous version, use the reference included with your software in the Help menu. If you see any errors or have suggestions, please let us know. If you prefer a more technical reference, visit the Processing Core Javadoc and Libraries Javadoc.
Name | [] (array access) |
||||||
---|---|---|---|---|---|---|---|
Examples | int[] numbers = new int[3]; numbers[0] = 90; numbers[1] = 150; numbers[2] = 30; int a = numbers[0] + numbers[1]; // Sets variable 'a' to 240 int b = numbers[1] + numbers[2]; // Sets variable 'b' to 180 | ||||||
Description | The array access operator is used to specify a location within an array. The data at this location can be defined with the syntax array[element] = value and read with the syntax value = array[element] as shown in the above example. | ||||||
Syntax | datatype[] array[element] | ||||||
Parameters |
| ||||||
Related | Array |
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.