访问修饰符和隐藏 Java 字段

发布于 2024-11-26 15:39:42 字数 198 浏览 2 评论 0原文

这是问题的后续:“java访问修饰符和覆盖”。然而,前者通常处理 Java 方法。为什么 Java 字段具有灵活性?我们可以在继承类中缩小或扩大它们的可见性,而不能使用“重写”或“隐藏”方法。

This is a follow-up to the question: "java access modifiers and overriding". The former generally deals with Java methods however. Why the flexibility with Java fields? We can narrow or widen the visibility with their respect in an inherited class whereas can't with an 'overridden' nor 'hidden' method.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

┾廆蒐ゝ 2024-12-03 15:39:42

您从一开始就不会覆盖字段 - 您总是隐藏它们。字段不是多态的...换句话说,如果您编写:

Superclass x = new Subclass();
System.out.println(x.field);

并且 SuperclassSubclass 都声明一个名为 field 的字段,它将无论如何总是使用超类,因为这是编译器可以“看到”的全部内容。

就我个人而言,无论如何我都会尝试将变量保持私有......

You never override fields to start with - you're always hiding them. Fields aren't polymorphic... in other words, if you write:

Superclass x = new Subclass();
System.out.println(x.field);

and both Superclass and Subclass declare a field called field, it will always use the superclass one anyway, because that's all the compiler can "see".

Personally I try to keep my variables private anyway...

楠木可依 2024-12-03 15:39:42

为什么 Java 字段具有灵活性

您不能通过扩展另一个类中的字段来将其私有化。当您在子类中创建新字段时,您只是隐藏了超类字段。

class Base {
    protected int x;
}

class Ext extends Base {
    private int x; // not the same as Base.x
}

why the flexibility with java fields

You cannot make a field in another class go private by extending it. When you make a new field in a sub class you are just hiding the super class field.

class Base {
    protected int x;
}

class Ext extends Base {
    private int x; // not the same as Base.x
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文