Pages

Variable Types


Variables are three kinds of variables in Java:
  1. Local Variables
  2. Instance Variables
  3. Static Variables

1. Local Variables

  1. Local variables are declared in methods, constructors, or blocks.
  2. Local variables are created when the method, constructor or block is entered and the variable will be destroyed once it exits the method, constructor or block.
  3. Access modifiers cannot be used for local variables.
  4. Local variables are visible only within the declared method, constructor or block.
  5. Local variables are implemented at stack level internally.
  6. There is no default value for local variables so local variables should be declared and an initial value should be assigned before the first use.

2. Instance Variables

  1. Instance variables are declared in a class, but outside a method, constructor or any block.
  2. When a space is allocated for an object in the heap a slot for each instance variable value is created.
  3. Instance variables are created when an object is created with the use of the key word ‘new’ and destroyed when the object is destroyed.
  4. Instance variables hold values that must be referenced by more than one method, constructor or block, or essential parts of an object’s state that must be present throughout the class.
  5. Instance variables can be declared in class level before or after use.
  6. Access modifiers can be given for instance variables.
  7. The instance variables are visible for all methods, constructors and block in the class.
  8. Normally it is recommended to make these variables private (access level).
  9. However, visibility for sub classes can be given for these variables with the use of access modifiers.
  10. Instance variables have default values. For numbers the default values is 0, for Booleans it is false and for object reference it is null.
  11. Values can be assigned during the declaration or within the constructor.
  12. Instance variables can be accessed directly by calling the variable name inside the class.
  13. However within static methods and different class (when instance variables are given accessibility) the should be called using the fully qualified name.

3. Class / Static Variables

  1. Class variables also known as static variables are declared with the static keyword in a class, but outside a method, constructor or a block.
  2. There would only be one copy of each class variable per class, regardless of how many objects are created from it.
  3. Static variables are rarely used other than being declared as constants.
  4. Constants are variables that are declared as public/private, final and static.
  5. Constants variables never change from their initial value. Static variables are stored in static memory.
  6. It is rare to use static variables other than declared final and used as either public or private constants.
  7. Static variables are created when the program starts and destroyed when the program stops.
  8. Visibility is similar to instance variables. However, most static variables are declared public since they must be available for users for the class.
  9. Default values are same as instance variables. For numbers the default value is 0, for Booleans it is false and for object reference it is null.
  10. Values can be assigned during the declaration or within the constructor. Additionally values can be assigned in special static initialize blocks.
  11. Static variables can be accessed by calling with the class name.
  12. When declaring class variable as public static final, then variables names (constants) are all in upper case.
  13. If the static variables are not public and final the naming syntax is the same as instance and local variables.


Complete List of Java Keywords (assert added in 1.4, enum added in 1.5)


abstract boolean break byte case catch char class const continue
default do double else extends final finally float for goto
if implements import instanceof int interface long native new package
private protected public return short static strictfp super switch synchronized
this throw throws transient try void volatile while assert enum