Declaring Member Variables
- Access Specifier
- public: accessible from anywhere
- private: within the class
- package (default): within the class and the package
- static : class variable
- final: constant
- Examples
AccessSpecifier [static] [final] type variableName