从子类添加属性时,我不必不必指定对象的父属性

时间:2019-04-05 01:23:14

标签: python-3.x class object parent-child

所以我有这个要创建的(星)类的星的数据集。在这些恒星中,有些是可变恒星。我创建了一个子类(变量),但是当我确定我的Star对象之一是变量star(不包括代码)时,我想在同一对象中包含额外的信息,而不必重新指定旧信息,并进一步将其分类。对象成为子类。

我知道如果我做这样的事情,我就可以使它工作:

# Class attribute
category = 'variable'

# Initializer / Instance attributes
def __init__(self, name, coordinates, scatter, photometry, periods, amplitudes):

然后:

star1 = Variable('Star 1', ('RA', 'dec'), 0.1, np.sin(np.linspace(0,1,100)), [1,100,1000], [1,2,1])

但是我不想重新指定所有这些信息。

# Parent class
    class Star:

    # Class attribute
    category = 'TESS'

# Initializer / Instance attributes
def __init__(self, name, coordinates, scatter):
    self.name = name
    self.coordinates = coordinates
    self.scatter = scatter

star1 = Star('Star 1', ('RA', 'dec'), 0.1)
print('Parent class')
print('category    :', star1.category)
print('name        :', star1.name)
print('coordinates :', star1.coordinates)
print('scatter     :', star1.scatter, '\n')

# Child class (inherits from Star() class)
class Variable(Star):

    # Class attribute
    category = 'variable'

    # Initializer / Instance attributes
    def __init__(self, photometry, periods, amplitudes):
        self.photometry = photometry
        self.periods = periods
        self.amplitudes = amplitudes

star1 = Variable(np.sin(np.linspace(0,1,100)), [1,100,1000], [1,2,1])
print('Child class')
print('category   :', star1.category)
print('photometry :', star1.photometry)
print('periods    :', star1.periods)
print('amplitudes :', star1.amplitudes)

下面的代码按预期工作。但是,如果我尝试:

print(star1.name)

之后:

star1 = Variable(np.sin(np.linspace(0,1,100)), [1,100,1000] [1,2,1])

名称,坐标和散点似乎已从我的对象中删除。

1 个答案:

答案 0 :(得分:1)

您必须调用超类的初始化方法,否则它将永远不会运行!换句话说,除非您告知Star类的__init__方法,否则它不会运行。

class Variable(Star):
    def __init__(self, arg1, arg2):
        super().__init__(arg1)
        self.arg2 = arg2

super()是访问超类及其方法的一种方法。假设您在merge类中有一个Star方法,该方法合并了两颗星,并且您想从Variable类中调用它,那么您将调用super().merge(other_star)