使用块/ proc / lambda的Ruby双管道赋值?

前端之家收集整理的这篇文章主要介绍了使用块/ proc / lambda的Ruby双管道赋值?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
写出来真的很好
@foo ||= "bar_default"

要么

@foo ||= myobject.bar(args)

但我一直在寻找是否有办法写出类似的东西

@foo ||= do
  myobject.attr = new_val
  myobject.other_attr = other_new_val
  myobject.bar(args)
end

在实际的功能代码中大致相当于类似的东西

@foo = if !@foo.nil?
         @foo
       else
         myobject.attr = new_val
         myobject.other_attr = other_new_val
         myobject.bar(args)
       end

我想我可以编写我自己的全局方法,如“getblock”来包装并返回任何一般的块的结果,但是我想知道是否已经有一个内置的方法来做到这一点.

解决方法

你可以使用begin..end:
@foo ||= begin
  # any statements here
end

或者考虑将块的内容分解为单独的方法.

原文链接:https://www.f2er.com/ruby/273156.html

猜你在找的Ruby相关文章