如何用一个参数简化 ruby​​ 块?

发布于 2024-08-30 00:19:04 字数 92 浏览 5 评论 0原文

我在某个地方看到了一种用一个参数简化 ruby​​ 块的方法,它基本上省略了竖线和参数声明,因为它以某种方式内联。

我无法再找到它或记住要搜索的任何名称。

Somewhere I saw a way to simplify ruby blocks with one argument, it basically omitted vertical bars and argument declaration, because it was somehow inlined.

I cannot find it anymore or remember any names to search for.

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

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

发布评论

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

评论(1

蘸点软妹酱 2024-09-06 00:19:04

有一种简化方法适用于某些情况。

如果您有类似的内容:

(1..10).collect { |i| i.to_s }

您可以将其简化为:

(1..10).collect(&:to_s)

& 通过调用 Symbol#to_proc。它不适用于其他参数,并且仅当您想直接在块参数上调用方法时才有效。它是在 Rails (ActiveSupport) 中引入,但是它进入核心 Ruby 1.8.7 和 1.9。

There is a simplifications that works in a few situations.

If you have something like:

(1..10).collect { |i| i.to_s }

You can simplify it to:

(1..10).collect(&:to_s)

The & converts the symbol to a proc by calling Symbol#to_proc. It doesn't work with additional arguments, and it only works if you want to invoke a method directly on the block argument. It was introduced in Rails (ActiveSupport), but made its way into core Ruby 1.8.7 and 1.9.

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