假设我有一个类似以下的课程:
class Test:
def __init__(self, some_data_source):
self.a = 5
self.b = some_data_source['c']
我想使此类的所有实例变量均为只读,并将按如下方式使用它:
data_source = {
'c': 'some data'
}
x = Test(data_source)
# Should be illegal i.e result in an exception
x.a = 5
x.b = None
# This should be legal
print(x.a)
最初,我想到了using properties,但是后来我意识到,要动态添加它们,我需要在定义类后添加这些属性(例如Test.attribute = property(...)
)。这不起作用,因为我想在类中定义这些属性(特别是在__init__
中)。
我还如何使所有实例变量对一个类只读?
答案 0 :(得分:1)
使用hasatter
检查该变量是否存在以及是否引发错误,您无法为该变量设置新值,并在__setattr__
中对其进行检查
class Test:
def __init__(self, some_data_source):
self.a = 5
self.b = some_data_source['c']
def __setattr__(self, name, value):
if hasattr(self, name):
raise ValueError('cannot set %s to %s' %(value, name))
self.__dict__[name]=value
data_source = {
'c': 'some data'
}
x = Test(data_source)
x.b='raise' # this will raise error