Java - Super Key Demo

  1. // super keyword demonstration    
  2.     
  3. class one    
  4.  {    
  5.    String x = "Velan";    
  6.  }    
  7.     
  8. class two extends one    
  9.  {    
  10.    String x = "Senthil";    
  11.     
  12.    void display()    
  13.     {    
  14.       System.out.println("\n"+x);    
  15.       System.out.println("\n"+super.x);     
  16.     }     
  17.  }    
  18.     
  19. class ssvSuper    
  20.  {    
  21.   public static void main(String arg[])    
  22.    {    
  23.      two t = new two();    
  24.      t.display();    
  25.    }    
  26.  }