使用没有getter / setter的@property

时间:2017-12-25 23:07:26

标签: python

通过pandas代码,我看到了很多这样的结构:

@property
def _constructor(self):
    return Series

然后它被称为:

def view(self, dtype=None):
    return self._constructor(self._values.view(dtype),
                             index=self.index).__finalize__(self)

这里使用的@property装饰器是什么?更一般地说,什么时候你会在没有getter或setter的情况下使用@property

0 个答案:

没有答案