Hash#each_key()是一种Hash类方法,该方法通过将 key 对作为参数传递来找到对哈希中的each_key key 调用一次块的嵌套值。
用法:Hash.each_key()
参数:散列值
返回:为哈希中的each_key key 调用一次块,并将 key 作为参数,否则调用Enumerator(如果未传递任何参数)。
示例1:
# Ruby code for Hash.each_key() method
# declaring Hash value
a = {a:100, b:200}
# declaring Hash value
b = {a:100, c:300, b:200}
# declaring Hash value
c = {a:100}
# each Value
puts "Hash a each_key form : #{a.each_key()}\n\n"
puts "Hash b each_key form : #{b.each_key {|key| puts "#{key}"}}\n\n"
puts "Hash c each_key form : #{c.each_key {|value| puts "#{value}"}}\n\n"
输出:
Hash a each_key form : # a c b Hash b each_key form : {:a=>100, :c=>300, :b=>200} a Hash c each_key form : {:a=>100}
示例2:
# Ruby code for Hash.each_key() method
# declaring Hash value
a = { "a" => 100, "b" => 200 }
# declaring Hash value
b = {"a" => 100}
# declaring Hash value
c = {"a" => 100, "c" => 300, "b" => 200}
# each Value
puts "Hash a each_key form : #{a.each_key()}\n\n"
puts "Hash b each_key form : #{b.each_key {|key| puts "#{key}"}}\n\n"
puts "Hash c each_key form : #{c.each_key {|value| puts "#{value}"}}\n\n"
输出:
Hash a each_key form : # a Hash b each_key form : {"a"=>100} a c b Hash c each_key form : {"a"=>100, "c"=>300, "b"=>200}
相关用法
- Ruby Hash dig()用法及代码示例
- Ruby Hash any?()用法及代码示例
- Ruby Hash eql?用法及代码示例
- Ruby Hash each()用法及代码示例
- Ruby Hash key()用法及代码示例
- Ruby Hash key?()用法及代码示例
- Ruby Hash assoc()用法及代码示例
- Ruby Hash compare_by_identity?()用法及代码示例
- Ruby Hash keys()用法及代码示例
- Ruby Hash include?()用法及代码示例
- Ruby Hash has_key?()用法及代码示例
- Ruby Hash values用法及代码示例
- Ruby Hash clear()用法及代码示例
- Ruby Hash to_s()用法及代码示例
- Ruby Hash rehash用法及代码示例
注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 Ruby | Hash each_key() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。