相当于 python 中的 ruby​​ obj.send

发布于 2024-10-21 02:08:38 字数 174 浏览 0 评论 0原文

在 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 技术交流群。

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

发布评论

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

评论(4

以酷 2024-10-28 02:08:38
getattr(obj, "name")(args)

getattr(obj, "name")(args)

​​​​

身边 2024-10-28 02:08:38

嗯... getattr(obj, funcname)(*args, **kwargs) ?

>>> s = "Abc"

>>> s.upper()
'ABC'

>>> getattr(s, "upper")()
'ABC'

>>> getattr(s, "lower")()
'abc'

hmmm... getattr(obj, funcname)(*args, **kwargs) ?

>>> s = "Abc"

>>> s.upper()
'ABC'

>>> getattr(s, "upper")()
'ABC'

>>> getattr(s, "lower")()
'abc'
ぇ气 2024-10-28 02:08:38

除了已经提到的 getattr() 内置函数之外:

作为 if-elif-else 循环的替代方案,您可以使用字典将“案例”映射到所需的函数/方法:

# given func_a, func_b and func_default already defined
function_dict = {
    'a': func_a,
    'b': func_b  
}
x = 'a'
function_dict(x)() # -> func_a()
function_dict.get('xyzzy', func_default)() # fallback to -> func_c

关于方法而不是普通函数:

  • 您可以使用例如 lambda obj: obj.method_a() 而不是 function_a 等将上面的示例转换为 method_dict,然后执行 method_dict[case](obj)
  • 你可以使用 getattr() 正如其他答案已经提到的那样,但只有当你确实需要获取该方法时才需要它从它的名字来看。
  • 在某些情况下,stdlib 中的 operator.methodcaller() 是一个不错的快捷方式:基于方法名称和可选的一些参数,它创建一个函数,该函数在另一个对象上调用该名称的方法(如果您在创建方法调用者时提供了任何额外的参数,它将使用这些参数调用该方法)

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:

# given func_a, func_b and func_default already defined
function_dict = {
    'a': func_a,
    'b': func_b  
}
x = 'a'
function_dict(x)() # -> func_a()
function_dict.get('xyzzy', func_default)() # fallback to -> func_c

Concerning methods instead of plain functions:

  • you can just turn the above example into method_dict using for example lambda obj: obj.method_a() instead of function_a etc., and then do method_dict[case](obj)
  • you can use 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() from the stdlib is a nice shortcut in some cases: based on a method name, and optionally some arguments, it creates a function that calls the method with that name on another object (and if you provided any extra arguments when creating the methodcaller, it will call the method with these arguments)
白日梦 2024-10-28 02:08:38

或者,如果您愿意,operator.methodcaller('foo') 是一个函数,它会根据您传递的任何内容调用 foo。换句话说,

import operator
fooer = operator.methodcaller("foo")
fooer(bar)

等于

bar.foo()

(我认为这可能是合适类别中的伴随或对偶。如果您有数学倾向。)

Or, if you prefer, operator.methodcaller('foo') is a function which calls foo on whatever you pass it. In other words,

import operator
fooer = operator.methodcaller("foo")
fooer(bar)

is equivalent to

bar.foo()

(I think this is probably the adjoint or dual in a suitable category. If you're mathematically inclined.)

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