this.成员变量:当前类的变量,this.方法:当前运行类的方法!

public class Test {    void test() {   this.test1();    }    void test1() {   System.out.println("test");    } }this public class Test1  extends Test{   void test1() {  System.out.println("err");   }
相关文章
相关标签/搜索