Base{ String name = Base; } Son{ String name = son; } Base obj = new Son(); obj.name = Base; 说明: 属性是静态绑定,方法是动态绑定