本文简要介绍ruby语言中 Hash.new
的用法。
用法
new(default_value = nil) → new_hash
new {|hash, key| ... } → new_hash
返回一个新的空 Hash 对象。
新哈希的初始默认值和初始默认过程取决于使用上面的形式。请参阅默认值。
如果既没有给出参数也没有给出块,则将默认值和默认过程都初始化为 nil
:
h = Hash.new
h.default # => nil
h.default_proc # => nil
如果给定参数 default_value
但没有给出块,则将默认值初始化为给定的 default_value
并将默认过程初始化为 nil
:
h = Hash.new(false)
h.default # => false
h.default_proc # => nil
如果给出了一个块但没有参数,则将该块存储为默认过程并将默认值设置为 nil
:
h = Hash.new {|hash, key| "Default value for #{key}" }
h.default # => nil
h.default_proc.class # => Proc
h[:nosuch] # => "Default value for nosuch"
相关用法
- Ruby Hash.reject用法及代码示例
- Ruby Hash.delete()用法及代码示例
- Ruby Hash.size用法及代码示例
- Ruby Hash.delete用法及代码示例
- Ruby Hash.hash <=用法及代码示例
- Ruby Hash.select!用法及代码示例
- Ruby Hash.ruby2_keywords_hash用法及代码示例
- Ruby Hash.rassoc(obj)用法及代码示例
- Ruby Hash.to_s用法及代码示例
- Ruby Hash.values_at()用法及代码示例
- Ruby Hash.fetch_values()用法及代码示例
- Ruby Hash.select用法及代码示例
- Ruby Hash.initialize_copy用法及代码示例
- Ruby Hash.replace用法及代码示例
- Ruby Hash.merge!用法及代码示例
- Ruby Hash.delete_if用法及代码示例
- Ruby Hash.slice用法及代码示例
- Ruby Hash.hash用法及代码示例
- Ruby Hash.each_value用法及代码示例
- Ruby Hash.fetch()用法及代码示例
- Ruby Hash.each用法及代码示例
- Ruby Hash.keys用法及代码示例
- Ruby Hash.each_key用法及代码示例
- Ruby Hash.insert()用法及代码示例
- Ruby Hash.reject!用法及代码示例
注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 Hash.new。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。