我需要创建一堆类变量,我想通过循环遍历这样的列表来完成它:
vars = ('tx', 'ty', 'tz') # plus plenty more
class Foo():
for v in vars:
setattr(no_idea_what_should_go_here, v, 0)
有可能吗?我不想将它们作为实例(在
self
中使用 __init__
),而是作为类变量。
您可以在创建类后立即运行插入代码:
class Foo():
...
vars = ('tx', 'ty', 'tz') # plus plenty more
for v in vars:
setattr(Foo, v, 0)
此外,您可以在创建类时动态存储变量:
class Bar:
locals()['tx'] = 'texas'
如果出于任何原因你不能使用雷蒙德在类创建后设置它们的答案,那么也许你可以使用元类:
class MetaFoo(type):
def __new__(mcs, classname, bases, dictionary):
for name in dictionary.get('_extra_vars', ()):
dictionary[name] = 0
return type.__new__(mcs, classname, bases, dictionary)
class Foo(): # For python 3.x use 'class Foo(metaclass=MetaFoo):'
__metaclass__=MetaFoo # For Python 2.x only
_extra_vars = 'tx ty tz'.split()
locals()
版本在课堂上对我不起作用。
以下可用于动态创建类的属性:
class namePerson:
def __init__(self, value):
exec("self.{} = '{}'".format("name", value)
me = namePerson(value='my name')
me.name # returns 'my name'
setattr(object, name, value)
这是 getattr()
的对应部分。参数是一个对象、一个字符串和一个任意值。该字符串可以命名现有属性或新属性。如果对象允许,该函数会将值分配给属性。
例如,setattr(x, 'name', value)
相当于 x.name = value
。
您需要的功能是:
setattr(obj, name, value)
这允许您为给定类设置命名属性(这可以是
self
)。
此功能的内置文档非常不言自明:
Signature: setattr(obj, name, value, /)
Docstring:
Sets the named attribute on the given object to the specified value.
setattr(x, 'y', v) is equivalent to ``x.y = v''
Type: builtin_function_or_method
使用示例
它的一个用途是使用字典来设置多个类属性,在我的例子中,这是来自 xpath 定义。我觉得通过将可能更脆弱的 xpath 定义全部保留在一个地方,提高了可维护性:
class Person:
def _extract_fields(self):
''' Process the page using XPath definitions '''
logging.debug("_extract_fields(): {}".format(repr(self)))
# describe how to extract data from the publicly available site
# (kept together for maintainability)
fields = {
'staff_name':
'//div[@id="staff_name"]//text()',
'staff_dob':
'(//div[@id="staff_dob"]//text())[1]'
}
# populate named class attributes from the dict
for key in fields:
setattr(self, key, self._parsed_content.xpath(fields[key]))
def __init__(self):
self._extract_fields()
您可以使用“foo”创建全局变量。 (或您的班级名称)位于名称开头:
vars=('tx','ty','tz') #plus plenty more
class Foo():
pass
foo = Foo() # Instance the class
for i in vars:
globals () ["foo." + i] = value