如何访问与该属性名称对应的给定字符串的对象属性
Posted
技术标签:
【中文标题】如何访问与该属性名称对应的给定字符串的对象属性【英文标题】:How to access object attribute given string corresponding to name of that attribute 【发布时间】:2011-02-06 10:38:39 【问题描述】:如何设置/获取x
给定的t
的属性值?
class Test:
def __init__(self):
self.attr1 = 1
self.attr2 = 2
t = Test()
x = "attr1"
【问题讨论】:
【参考方案1】:有称为getattr
和setattr
的内置函数
getattr(object, attrname)
setattr(object, attrname, value)
在这种情况下
x = getattr(t, 'attr1')
setattr(t, 'attr1', 21)
【讨论】:
还有删除属性的delattr,不过这个用的很少。 和 hasattr 用于测试对象是否具有特定的属性,尽管在这种情况下使用三参数形式 getattr(object, attrname, default) 通常更好。 无论如何我们可以像这样使用getattr,并说我有一个数据框df1
,还有一个变量x = 'df1'
,即df1作为var x中的字符串。我想像这样打印 df 的形状,getattr(x, 'shape')
或getattr('df1', 'shape')
。我知道这不能用 getattr 和任何其他方法来完成。
你可以做getattr(globals()[x], 'shape')
@ihightower 见How to get the value of a variable given its name in a string? 简而言之,如果范围未知,则没有通用的方法。 afult 的解决方案假定它是一个全局的,尽管它可能是。【参考方案2】:
如果您想将逻辑隐藏在类中,您可能更喜欢使用通用的 getter 方法,如下所示:
class Test:
def __init__(self):
self.attr1 = 1
self.attr2 = 2
def get(self,varname):
return getattr(self,varname)
t = Test()
x = "attr1"
print ("Attribute value of 0 is 1".format(x, t.get(x)))
输出:
Attribute value of attr1 is 1
另一个可以更好地隐藏它的方法是使用魔术方法__getattribute__
,但我不断得到一个无限循环,在尝试检索该方法中的属性值时我无法解决。
另请注意,您也可以使用vars()
。在上面的例子中,你可以用return vars(self)[varname]
交换getattr(self,varname)
,但是根据What is the difference between vars
and setattr
?的答案,getattr
可能更可取。
【讨论】:
【参考方案3】:注意:这个答案已经过时了。它适用于使用 new
模块的 Python 2,即 deprecated in 2008。
python 内置函数 setattr 和 getattr。可以用来设置和获取类的属性。
一个简单的例子:
>>> from new import classobj
>>> obj = classobj('Test', (object,), 'attr1': int, 'attr2': int) # Just created a class
>>> setattr(obj, 'attr1', 10)
>>> setattr(obj, 'attr2', 20)
>>> getattr(obj, 'attr1')
10
>>> getattr(obj, 'attr2')
20
【讨论】:
以上是关于如何访问与该属性名称对应的给定字符串的对象属性的主要内容,如果未能解决你的问题,请参考以下文章
JavaScript对象:按名称作为字符串访问变量属性[重复]
对象属性 Object.getOwnPropertyNames() Object.keys for...in