摘要:
Example5_11.java 阅读全文
摘要:
Example5_10.java 阅读全文
摘要:
Example5_9.java 阅读全文
摘要:
子类用super操作被隐藏的成员变量和方法 Example5_7.java 使用super调用父类的构造方法 Example5_8.java 阅读全文
摘要:
成员变量的隐藏和方法的重写 Goods.java CheapGoods.java Example5_3.java 子类对继承父类方法的重写 University.java ImportantUniversity.java Example5_4.java 阅读全文
摘要:
People.java Student.java UniverStudent.java Example5_1.java 注意:父类的私有变量、类不能够被继承 阅读全文
摘要:
在构造方法中实用this People.java 在实例方法中使用this 上述A类的实例方法f中出现了this,this就代表使用f的当前对象。所以,“this.x”就表示当前对象的变量x,当对象调用方法f时,将100赋给该对象的变量x,因此,当一个对像调用方法时,方法中的实例成员变量就是值分配给 阅读全文
摘要:
重载的参数也可以是一个对象 Circle.java Tixing.java Student.java Example4_13.java 阅读全文
摘要:
阅读全文
摘要:
Example4_10.java Lader.java 阅读全文