declaring string instance variables java code example

Example 1: instance variable java

A variable declared inside the class is called instance variable. Value of 
instance variable are instance specific.
public class InstanceVariableDemo
{
   // instance variable declared inside the class and outside the method
   int c;
   public void subtract()
   {
      int x = 100;
      int y = 50;
      c = x - y;
      System.out.println("Subtraction: " + c);
   }
   public void multiply()
   {
      int m = 10;
      int n = 5;
      c = m * n;
      System.out.println("Multiplication: " + c);
   }
   public static void main(String[] args)
   {
      InstanceVariableDemo obj = new InstanceVariableDemo();
      obj.subtract();
      obj.multiply();
   }
}

Example 2: instance variables

Instance Belongs to the object
You can have multiple copies of instance variables

Tags:

Misc Example