Java子类属性继承父类属性

public abstract class Parent {

    String name = "parent";

}    

public class Son extends Parent{

    public void print(){
this.name = "son";
System.out.println(super.name);
System.out.println(this.name);
} public static void main(String[] args) throws InstantiationException, IllegalAccessException {
Son son = new Son();
son.print();
} } son
son

可以看出,子类中的属性的引用指向的是父类属性的地址。

上一篇:DirectX API 编程起步 #01 项目设置


下一篇:Lua中的模块与module函数详解