相当于 python 中的 ruby obj.send
在 ruby 中,如果我有一个对象 obj,其方法名为 funcname,我可以使用以下语法调用该方法 obj.send(funcname)
python中有类似的东西吗?
我想这样做的原因是我有一个 switch 语句,我在其中设置了 funcname,并想在 switch 语句的末尾调用它。
In ruby if I have an object obj, with a method called funcname, I can call the method using the following syntax
obj.send(funcname)
Is there something similar in python.
The reason I want to do this, that I have a switch statement where I set the funcname, and want to call it at the end of the switch statement.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
嗯... getattr(obj, funcname)(*args, **kwargs) ?
hmmm... getattr(obj, funcname)(*args, **kwargs) ?
除了已经提到的 getattr() 内置函数之外:
作为 if-elif-else 循环的替代方案,您可以使用字典将“案例”映射到所需的函数/方法:
关于方法而不是普通函数:
lambda obj: obj.method_a()
而不是function_a
等将上面的示例转换为method_dict
,然后执行method_dict[case](obj)
getattr()
正如其他答案已经提到的那样,但只有当你确实需要获取该方法时才需要它从它的名字来看。Apart from the already mentioned
getattr()
builtin:As an alternative to an if-elif-else loop you can use a dictionary to map your "cases" to the desired functions/methods:
Concerning methods instead of plain functions:
method_dict
using for examplelambda obj: obj.method_a()
instead offunction_a
etc., and then domethod_dict[case](obj)
getattr()
as other answers have already mentioned, but you only need it if you really need to get the method from its name.或者,如果您愿意,
operator.methodcaller('foo')
是一个函数,它会根据您传递的任何内容调用foo
。换句话说,等于
(我认为这可能是合适类别中的伴随或对偶。如果您有数学倾向。)
Or, if you prefer,
operator.methodcaller('foo')
is a function which callsfoo
on whatever you pass it. In other words,is equivalent to
(I think this is probably the adjoint or dual in a suitable category. If you're mathematically inclined.)