我可以从超级的超级中调用重写的方法吗?

发布于 2024-12-17 22:30:40 字数 634 浏览 0 评论 0原文

假设我有这三个类:

class Foo {
    void fn() {
        System.out.println("fn in Foo");
    }
}

class Mid extends Foo {
    void fn() {
        System.out.println("fn in Mid");
    }
}

class Bar extends Mid {
    void fn() {
        System.out.println("fn in Bar");
    }

    void gn() {
        Foo f = (Foo) this;
        f.fn();
    }
}

public class Trial {
    public static void main(String[] args) throws Exception {
        Bar b = new Bar();
        b.gn();
    }
}

是否可以调用 Foofn()?我知道我的 gn() 解决方案不起作用,因为 this 指向 Bar 类型的对象。

Assume that I have these three classes:

class Foo {
    void fn() {
        System.out.println("fn in Foo");
    }
}

class Mid extends Foo {
    void fn() {
        System.out.println("fn in Mid");
    }
}

class Bar extends Mid {
    void fn() {
        System.out.println("fn in Bar");
    }

    void gn() {
        Foo f = (Foo) this;
        f.fn();
    }
}

public class Trial {
    public static void main(String[] args) throws Exception {
        Bar b = new Bar();
        b.gn();
    }
}

Is it possible to call a Foo's fn()? I know that my solution in gn() doesn't work because this is pointing to an object of type Bar.

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

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

发布评论

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

评论(1

久而酒知 2024-12-24 22:30:40

这在 Java 中是不可能的。您可以使用 super,但它始终使用类型层次结构中直接超类中的方法。

另请注意:这

Foo f = (Foo) this;
f.fn();

多态性的定义,虚拟调用如何工作:即使f的类型为Foo,但在运行时f.fn() 被分派到 Bar.fn()。编译时类型并不重要。

It's not possible in Java. You can use super but it always uses the method in immediate superclass in type hierarchy.

Also note that this:

Foo f = (Foo) this;
f.fn();

is the very definition of polymoprhism how virtual call works: even though f is of type Foo, but at runtime f.fn() is dispatched to Bar.fn(). Compile-time type doesn't matter.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文