文档

Java™ 教程-Java Tutorials 中文版
隐藏字段
Trail: Learning the Java Language
Lesson: Interfaces and Inheritance
Section: Inheritance

隐藏字段

在类中,与超类中的字段具有相同名称的字段会隐藏超类的字段,即使它们的类型不同。在子类中,超类中的字段不能通过其简单名称引用。相反,必须通过 super 访问该字段,这将在下一节中介绍。一般来说,我们不建议隐藏字段,因为它使代码难以阅读。


Previous page: Polymorphism
Next page: Using the Keyword super