Monday, September 19, 2005

Household Items That Make Good Lubricant



static: If declares a static attribute, all instances of that class share that attribute, if you change it in one of them, all see the change on its own attribute. A static method can be used without instantiating the class.
private : The variable or method is accessible only within the class where it is defined.
protected : The variable or method is available in the class where it is set and any of its subclasses. public
: The variable or method is available in any class.
none of the above : The variable or method is accessible within the same package (directory).