Python 中通过字符串访问类属性
在面向对象编程中,可能需要基于字符串动态访问类属性输入。考虑以下示例类:
<code class="python">class User: def __init__(self): self.data = [] self.other_data = [] def doSomething(self, source): if source == 'other_data': # How to access self.other_data here?</code>
此示例旨在访问具有源字符串中指定名称的类成员。实现方法如下:
使用 getattr():
getattr() 函数允许动态访问对象的属性。它需要两个参数:对象和表示属性名称的字符串。在本例中,source 是属性名称:
<code class="python">x = getattr(self, source)</code>
此行检索名称存储在 source 中的属性的值。在上面的示例中,它将 self.other_data 分配给 x.
注意: getattr() 可以使用数据属性和方法。
以上是如何从 Python 中的字符串动态访问类属性?的详细内容。更多信息请关注PHP中文网其他相关文章!