繁体   English   中英

Python继承:从子类创建父类对象

[英]Python inheritance: Create parent class object from child class

我有一组班级,其中孩子是从父母那里派生的。 我试图实现的是创建一个父类的对象,该对象从子类的对象获取所有值。 我发现的唯一方法是:

from copy import deepcopy
class Parent(object):
    def __init__(self, value):
        self.val = value

class Child(Parent):
    def __init__(self, val=8):
         super(Child, self).__init__(val)
         chval=5
par=Parent(3)
ch=Child()
parent= Parent(4)
parent.__dict__ = deepcopy(super(Child, ch).__dict__)
print(parent.val)
print(type(par), type(ch), type(parent))

输出确实是

8
(<class '__main__.Parent'>, <class '__main__.Child'>, <class '__main__.Parent'>)

但我不确定这是否是一种很好的,Python风格且无风险的方法

问题 :如何用Rectangle的基本Figure属性创建一个Circle “”

您可以通过在基class Figure实现new_from方法来实现。
例如:

class Figure:
    def __init__(self, p):
        self.properties = p

    @classmethod
    def new_from(cls, obj):
        if issubclass(obj.__class__, Figure):
            _new = cls(obj.properties)
            return _new
        else:
            raise TypeError('Expected subclass of <class Figure>, got {}.'\
                                .format(type(obj)))

    def __repr__(self):
      return "<class '{}' properties:{}"\
                .format(self.__class__.__name__, self.properties)

class Rectangle(Figure):
    pass    

class Circle(Figure):
    pass

r1 = Rectangle({'test': 'r1.property'})
r2 = Rectangle.new_from(r1)
c1 = Circle({'test': 'c1.property'})
c2 = Circle.new_from(r1)

for obj in [r1, r2, c1, c2]:
    print(obj)  # '{}\n{}'.format(obj, obj.__dict__))

输出

 <class 'Rectangle' properties:{'test': 'r1.property'} <class 'Rectangle' properties:{'test': 'r1.property'} <class 'Circle' properties:{'test': 'c1.property'} <class 'Circle' properties:{'test': 'r1.property'} 

使用Python测试:3.6

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM