Field Declarations
A field declarations can have field-modifiers
field-modifiers type name ;
Possible field-modifiers are:
public
private
static
others later
A private field is not visible from outside the class definition.
A static field is also called a class variable.
A class variable is not an instance variable of each object; rather, there is precisely one instance of a class variable no matter how many objects of the class are eventually created