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()

相关文章

功能概要:(目前已实现功能)公共展示部分:1.网站首页展示...
大体上把Python中的数据类型分为如下几类: Number(数字) ...
开发之前第一步,就是构造整个的项目结构。这就好比作一幅画...
源码编译方式安装Apache首先下载Apache源码压缩包,地址为ht...
前面说完了此项目的创建及数据模型设计的过程。如果未看过,...
python中常用的写爬虫的库有urllib2、requests,对于大多数比...