Java Variables

  • Variables are containers for storing data values. A variable is a name given to a memory location. It is the basic unit of storage in a program.
  • The value stored in a variable can be changed during program execution.
  • A variable is only a name given to a memory location, all the operations done on the variable effects that memory location.
  • In Java, all the variables must be declared before use.
  • There are three types of variables in java: local, instance and static.

  • 1) Local Variable

    A variable declared inside the body of the method is called local variable. You can use this variable only within that method and the other methods in the class aren't even aware that the variable exists.

    A local variable cannot be defined with "static" keyword.

    2) Instance Variable

    A variable declared inside the class but outside the body of the method, is called instance variable. It is not declared as static.

    It is called instance variable because its value is instance specific and is not shared among instances.

    3) Static variable

    A variable which is declared as static is called static variable. It cannot be local. You can create a single copy of static variable and share among all the instances of the class.

    Memory allocation for static variable happens only once when the class is loaded in the memory.

    Example: