高手勿喷。
Parent类:
package demo.test;
public class Parent {
public Parent(){
System.out.println(this.getClass());
}
public void info(){
System.out.println(this);
}
}
Child类:
package demo.test;
public class Child extends Parent {
}
测试类:
package demo.test;
public class Test {
public static void main(String[] args) {
Parent p = new Parent();
p.info();
System.out.println();
Child c = new Child();
c.info();
}
}
Child类继承Parent类,在Parent类的info方法中会输出对象的内存地址。
class demo.test.Parent
demo.test.Parent@544a5ab2
class demo.test.Child
demo.test.Child@2e6e1408
没错,仅仅为了说明一个问题,在继承关系中,this指的是子类,或者说谁调用的方法就是指谁。
多重继承也是如此。