我不知道在什么情况下我想使用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