foo = { bar: false }
foo[:bar] ||= true
我希望它能够发挥作用,foo[:bar] = true unless foo.key? :bar
但事实并非如此。如果尚未声明哈希值,是否有更短的方法有条件地声明它?
You can use .fetch
if you don't need to store the value
hash.fetch(:key, :default)
Or give Hash a proc.
hash = Hash.new { |hash, key| hash[key] = 'default-value' }
hash[:a] = 'foo'
p hash[:b]
# => 'default-value'
为什么 ||= 在哈希上重新分配错误值?
因为这就是它的用途:如果为假,则分配,否则不要理会。它还应该做什么?