1. 程式人生 > >this.成員變數:當前類的變數,this.方法:當前執行類的方法!

this.成員變數:當前類的變數,this.方法:當前執行類的方法!



public class Test {
   void test() {
  this.test1();
   }
   void test1() {
  System.out.println("test");
   }

}



public class Test1  extends Test{
  void test1() {
 System.out.println("err");
  }
  public static void main(String[] args) {
Test1 t=new Test1();
t.test();
}
}

結果是:err  

去掉this,結果也是err