在Python中使用参数调用对象的方法

发布于 2024-10-29 00:15:30 字数 520 浏览 1 评论 0原文

我希望能够使用动态函数名称调用 Python 类上的不同方法,例如

class Obj(object):
    def A(self, x):
        print "A %s" % x

    def B(self, x):
        print "B %s" % x

o = Obj()

 # normal route
o.A(1) # A 1
o.B(1) # B 1

 # dynamically
foo(o, "A", 1) # A 1; equiv. to o.A(1)
foo(o, "B", 1) # B 1

“foo”是什么? (或者还有其他方法吗?)我确信它一定存在,但我似乎找不到它或记住它叫什么。我查看了 getattrapply列表中的其他内容内置函数。这是一个如此简单的参考问题,但是唉,我来了!

感谢您的阅读!

I want to be able to call different methods on a Python class with dynamic function name, e.g.

class Obj(object):
    def A(self, x):
        print "A %s" % x

    def B(self, x):
        print "B %s" % x

o = Obj()

 # normal route
o.A(1) # A 1
o.B(1) # B 1

 # dynamically
foo(o, "A", 1) # A 1; equiv. to o.A(1)
foo(o, "B", 1) # B 1

What is "foo"? (or is there some other approach?) I'm sure it must exist, but I just can't seem to find it or remember what it is called. I've looked at getattr, apply, and others in the list of built-in functions. It's such a simple reference question, but alas, here I am!

Thanks for reading!

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

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

发布评论

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

评论(2

時窥 2024-11-05 00:15:30

好吧, getattr 确实似乎是你想要的:

getattr(o, "A")(1)

相当于

o.A(1)

Well, getattr indeed seems to be what you want:

getattr(o, "A")(1)

is equivalent to

o.A(1)
究竟谁懂我的在乎 2024-11-05 00:15:30

Python 中的方法是一等对象。

getattr(o, 'A')(1)

Methods in Python are first-class objects.

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