2.10.Summary of Variables
The Java programming language uses “fields” and “variables”. Each class instance has unique instance variables (non-static fields). Static fields (class variables) have one copy, regardless of how many times the class has been instantiated. Method local variables store temporary state. Parameters add information to a method; both local variables and parameters are “variables” (not “fields”). Field and variable naming conventions should be followed.
Eight primitive data types are byte, short, int, long, float, double, boolean, and char. The java.lang.Class String represents characters. The compiler assigns a reasonable default value for fields of the above types but never for local variables. A literal represents a fixed value in source code. An array holds a fixed number of single-type values. When an array is created, its length is set. After creation, its length is set.