ruby – 使用`Hash#fetch’在`Hash#[]`上的好处

前端之家收集整理的这篇文章主要介绍了ruby – 使用`Hash#fetch’在`Hash#[]`上的好处前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我不知道在什么情况下我想使用Hash#fetch over Hash#[].是否有一个常见的情况在哪里会很好用?

解决方法

三大用途:

>当值是强制性的时候,即没有默认值:

options.fetch(:repeat).times{...}

你也会收到一个很好的错误信息:

key not found: :repeat

>当值可以为nil或false,默认值为其他值时:

if (doit = options.fetch(:repeat,1))
  doit.times{...}
else
  # options[:repeat] is set to nil or false,do something else maybe
end

>当你不想使用默认的/ default_proc的一个散列:

options = Hash.new(42)
options[:foo] || :default # => 42
options.fetch(:foo,:default) # => :default
原文链接:https://www.f2er.com/ruby/272364.html

猜你在找的Ruby相关文章