Java - ' This' Varaible

  1. class test3  
  2.   {  
  3.    String s = "Instance Variable";       
  4.    void view()  
  5.     {  
  6.       String s = "Local Variable";  
  7.       System.out.println("\n");  
  8.       System.out.println("1.s : "+s);  
  9.       System.out.println("\n");  
  10.       System.out.println("2.this s : "+this.s);  
  11.     }  
  12.     public static void main(String arg[])  
  13.     {  
  14.        test3 t1 = new test3();  
  15.        t1.view();  
  16.     }