如何在不调用函数的情况下引用它,因为 foo 与 foo() 相同,因此它已经被调用

发布于 2024-09-06 18:33:46 字数 126 浏览 3 评论 0原文

在 Ruby 中,如何在不调用函数的情况下引用它,因为 foo 与 foo() 相同,所以它已经被调用了。

例如,puts.classputs().class 相同

In Ruby, how do you refer to a function without invoking it, because foo is the same as foo() so it is already invoked.

for example, puts.class is the same as puts().class

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

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

发布评论

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

评论(1

吻风 2024-09-13 18:33:46

您使用方法,如下所示:

o = Object.new
def o.do_it
  puts "I did it!"
end

m = o.method(:do_it)
m.call    # prints out "I did it!"

You use method, like so:

o = Object.new
def o.do_it
  puts "I did it!"
end

m = o.method(:do_it)
m.call    # prints out "I did it!"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文