方法的 Ruby 重构

发布于 2024-12-19 05:08:36 字数 157 浏览 3 评论 0原文

希望将其重构为一行:

def sum_something
  sum = 0
  self.each { |a| sum += a }
  return sum
end

必须有一种方法可以在块内定义“总和”,并且我可以删除“返回”。

Would love to refactor this into just one line:

def sum_something
  sum = 0
  self.each { |a| sum += a }
  return sum
end

There must be a way to define 'sum' within the block and I could drop the 'return'.

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

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

发布评论

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

评论(1

天暗了我发光 2024-12-26 05:08:36
def sum_something
  inject(0, :+)
end
def sum_something
  inject(0, :+)
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文