如何在不调用函数的情况下引用它,因为 foo 与 foo() 相同,因此它已经被调用
在 Ruby 中,如何在不调用函数的情况下引用它,因为 foo 与 foo() 相同,所以它已经被调用了。
例如,puts.class
与 puts().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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您使用
方法
,如下所示:You use
method
, like so: