使用 super() 与非直接父级

发布于 2024-11-09 17:46:17 字数 268 浏览 1 评论 0原文

这是 super() 的合法使用吗?

class A(object):
    def method(self, arg):
        pass

class B(A):
    def method(self, arg):
        super(B,self).method(arg)

class C(B):
    def method(self, arg):
        super(B,self).method(arg)

谢谢。

Is this a legal use of super()?

class A(object):
    def method(self, arg):
        pass

class B(A):
    def method(self, arg):
        super(B,self).method(arg)

class C(B):
    def method(self, arg):
        super(B,self).method(arg)

Thank you.

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

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

发布评论

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

评论(2

过气美图社 2024-11-16 17:46:17

它会起作用,但它可能会让任何试图阅读你的代码的人感到困惑(包括你,除非你特别记得它)。不要忘记,如果您想从特定父类调用方法,您可以这样做:

A.method(self, arg)

It will work, but it will probably confuse anyone trying to read your code (including you, unless you remember it specifically). Don't forget that if you want to call a method from a particular parent class, you can just do:

A.method(self, arg)
冷心人i 2024-11-16 17:46:17

嗯,“合法”在这里是一个值得商榷的术语。该代码最终将调用 A.method,因为赋予 super 的类型被排除在搜索之外。至少可以说,我认为 super 的这种用法很不稳定,因为它会跳过继承层次结构的一个成员(看似随意),这与我作为开发人员的期望不一致。由于已经鼓励 super 的用户保持一致性,因此我建议不要这种做法。

Well, "legal" is a questionable term here. The code will end up calling A.method, since the type given to super is excluded from the search. I would consider this usage of super flaky to say the least, since it will skip a member of the inheritance hierarchy (seemingly haphhazardly), which is inconsistent with what I would expect as a developer. Since users of super are already encouraged to maintain consistency, I'd recommend against this practice.

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