ruby Ruby:Llenar un hash con valores por defecto

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ruby Ruby:Llenar un hash con valores por defecto相关的知识,希望对你有一定的参考价值。


DEFAULT_VALUES = { temperature: 10, altitude: 1200, pressure: 500 }

def fill_default_values(current_values)
  {}.tap do |values|
    DEFAULT_VALUES.each_key do
      |key| values[key] = current_values[key] || DEFAULT_VALUES[key]
    end
  end
end

以上是关于ruby Ruby:Llenar un hash con valores por defecto的主要内容,如果未能解决你的问题,请参考以下文章

ruby Ruby Hash Manipulation

ruby Ruby Hash深度搜索没有获得堆栈大小异常

Ruby 维护 Hash 插入顺序

ruby array

ruby hash

Ruby--hash