Reference for Processing version 1.2. If you have a previous version, use the reference included with your software. If you see any errors or have suggestions, please let us know. If you prefer a more technical reference, visit the Processing Javadoc.

Name

final

Examples
final float constant = 12.84753;
println(constant);  // Prints "12.84753" to the console
constant += 12.84;  // ERROR! It's not possible to change a "final" value
Description Keyword used to state that a value, class, or method can't be changed. If the final keyword is used to define a variable, the variable can't be changed within the program. When used to define a class, a final class cannot be subclassed. When used to define a method, a final method can't be overridden by subclasses.

This keyword is an essential part of Java programming and is not usually used with Processing. Consult a Java language reference or tutorial for more information, such as this one.
Usage Web & Application
Updated on June 14, 2010 12:05:29pm EDT

Creative Commons License