如何将数组传递给接受带有 splat 运算符的属性的方法?

发布于 2024-11-19 20:45:04 字数 296 浏览 3 评论 0原文

如果我有这样的方法:

def sum *numbers
  numbers.inject{|sum, number| sum += number}
end

我如何能够将数组作为数字传递?

ruby-1.9.2-p180 :044 > sum 1,2,3   #=> 6
ruby-1.9.2-p180 :045 > sum([1,2,3])   #=> [1, 2, 3]

请注意,我无法更改 sum 方法来接受数组。

If I have a method like:

def sum *numbers
  numbers.inject{|sum, number| sum += number}
end

How would I be able to pass an array as numbers?

ruby-1.9.2-p180 :044 > sum 1,2,3   #=> 6
ruby-1.9.2-p180 :045 > sum([1,2,3])   #=> [1, 2, 3]

Note that I can't change the sum method to accept an array.

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

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

发布评论

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

评论(2

岛徒 2024-11-26 20:45:05

调用方法的时候就放个splat?

sum(*[1,2,3])

Just put a splat when calling the method?

sum(*[1,2,3])
兲鉂ぱ嘚淚 2024-11-26 20:45:05

你是这个意思吗?

sum(*[1,2,3])

@Dogbert 是第一个

Did you mean this?

sum(*[1,2,3])

@Dogbert was first

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