利用setattr()时发生AttributeError

时间:2020-07-09 09:21:56

标签: python python-3.x

以下内容引发了AttributeError: 'objval' object has no attribute 'testitem'

class objval(object):
    def __init__(self):
        self.testitem = 1
    def __setattr__(self, key, value):
        print('setattr: ' + str(key) + '=' + str(value))

testobj = objval()
print(testobj.testitem)

尽管在删除def __setattr__(self, key, value):打印testobj.testitem时,现在可以正确输出该值。

1 个答案:

答案 0 :(得分:3)

您将覆盖类对象的 setattr 方法。像这样,它起作用并显示出您的属性。我刚刚添加了super方法,以使您的对象在更改后执行原始的 setattr 方法:

class objval(object):
    def __init__(self):
        self.testitem = 1

    def __setattr__(self, key, value):
        print('setattr: ' + str(key) + '=' + str(value))
        super(objval, self).__setattr__(key, value)

testobj = objval()
print(testobj.testitem)