微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

python – 如何执行部分继承

我有两个类,例如:

class Parent(object):

    def hello(self):
        print 'Hello world'

    def goodbye(self):
        print 'Goodbye world'


class Child(Parent):
    pass

class Child必须只从Parent继承hello()方法,并且不应该提及goodbye().
可能吗 ?

ps是的,我读了this

重要说明:我只能修改Child类(在所有可能的父类中应保留原样)

解决方法

解决方案取决于您为什么要这样做.如果你想避免将来错误地使用课程,我会这样做:

class Parent(object):
    def hello(self):
        print 'Hello world'
    def goodbye(self):
        print 'Goodbye world'

class Child(Parent):
    def goodbye(self):
        raise NotImplementedError

这是明确的,您可以在异常消息中包含说明.

如果您不想使用父类中的许多方法,那么更好的方式是使用组合而不是继承:

class Parent(object):
    def hello(self):
        print 'Hello world'
    def goodbye(self):
        print 'Goodbye world'

class Child:
    def __init__(self):
        self.buddy = Parent()
    def hello(self):
        return self.buddy.hello()

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐