当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Ruby Hash include?()用法及代码示例


Hash#include?()是一种Hash类方法,用于检查给定 key 是否在哈希中。

用法:Hash.include?()

参数:散列值


返回:true-如果给定的 key “”出现在哈希中,否则返回false

范例1:

# Ruby code for Hash.has_value?() 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} 
  
  
# has_value? Value 
puts "Hash a has_value? form:#{a.include?("a")}\n\n"
  
puts "Hash b has_value? form:#{b.has_value?("c")}\n\n"
  
puts "Hash c has_value? form:#{c.has_value?("c")}\n\n"

输出:

Hash a has_value? form:false

Hash b has_value? form:false

Hash c has_value? form:false

范例2:

# Ruby code for Hash.has_value?() 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} 
  
  
# has_value? Value 
puts "Hash a has_value? form:#{a.include?("a")}\n\n"
  
puts "Hash b has_value? form:#{b.has_value?("c")}\n\n"
  
puts "Hash c has_value? form:#{c.has_value?("c")}\n\n"

输出:

Hash a has_value? form:true

Hash b has_value? form:false

Hash c has_value? form:false



相关用法


注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 Ruby | Hash include?() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。