传递要动态查找的成员

发布于 2025-01-07 22:50:45 字数 218 浏览 0 评论 0原文

我想确定要动态查找哪个属性, 考虑下面的Python代码:

def f(x, a):
    return x.a

class X:
    b = 4

x = X()
print(f(x, b))

如果Python有这个属性,上面的代码应该打印4。

有没有办法用任何语言来做到这一点? 我无法想象使用 C++ 模板或动态类型的方法。

I want to determine which attribute to look-up dynamicaly,
Consider below python code:

def f(x, a):
    return x.a

class X:
    b = 4

x = X()
print(f(x, b))

If python had this property, above code should print 4.

Is there way to do it in any language?
I cannot conceive a way with C++ templates or dynamic typing.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

妄断弥空 2025-01-14 22:50:46

我认为您无法以您尝试的方式动态访问对象的属性。内置函数getattr将允许您执行此操作。正如 marcin 建议的那样,您可以将 f 替换为 getattr

http:// docs.python.org/library/functions.html#getattr

def f(x, a)
  return getattr(x, a)

class X:
    b = 4

getattr(x, a)

print(getattr(x, "b"))

I don't think you can dynamically access attributes of objects in the way you are attempting. the built-in function getattr will allow you to do this. As marcin suggested you can just replace f with getattr

http://docs.python.org/library/functions.html#getattr

def f(x, a)
  return getattr(x, a)

or

class X:
    b = 4

getattr(x, a)

print(getattr(x, "b"))
So要识趣 2025-01-14 22:50:46

在 Python 中,使用 字典

def f(x,a):
   return x[a]

x = {}
x[b] = 4
print f(x,b)

In Python, use a dictionary

def f(x,a):
   return x[a]

x = {}
x[b] = 4
print f(x,b)
可爱咩 2025-01-14 22:50:46

f = getattr

这将使您的示例正常工作。我认为你需要阅读 python 文档: http://docs.python.org/library/functions .html

f = getattr

That will make your example work. I think you need to read the python docs: http://docs.python.org/library/functions.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文