19

能写出来真是太好了

@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”来包装并返回任何通用块的结果,但我想知道是否已经有内置的方法可以做到这一点。

4

3 回答 3

44

您可以使用begin.. end

@foo ||= begin
  # any statements here
end

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

于 2012-12-30T04:46:49.533 回答
4

我通常这样写:

@foo ||= (
  myobject.attr = new_val
  myobject.other_attr = other_new_val
  myobject.bar(args)
)
于 2015-02-11T21:35:56.983 回答
0
@foo ||= unless @foo
  myobject.attr = new_val
  myobject.other_attr = other_new_val
  myobject.bar(args)
end
于 2012-12-30T04:45:36.623 回答