this.成员变量:当前类的变量,this.方法:当前运行类的方法!
public class Test { void test() { this.test1(); } void test1() { System.out.println("test"); }}public class Test1 extends Test{ void test1() { System.out.printl