Hash#values()是一種Hash類方法,它返回哈希中存在的值。
用法:Hash.values()
參數:散列值
返回:散列值
示例1:
# Ruby code for Hash.values() 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}
# values Value
puts "Hash a values form : #{a.values()}\n\n"
puts "Hash b values form : #{b.values()}\n\n"
puts "Hash c values form : #{c.values()}\n\n"
輸出:
Hash a values form : [100, 200] Hash b values form : [100, 300, 200] Hash c values form : [100]
示例2:
# Ruby code for Hash.values() 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}
# values Value
puts "Hash a values form : #{a.values()}\n\n"
puts "Hash b values form : #{b.values()}\n\n"
puts "Hash c values form : #{c.values()}\n\n"
輸出:
Hash a values form : [100, 200] Hash b values form : [100] Hash c values form : [100, 300, 200]
相關用法
- Ruby Hash dig()用法及代碼示例
- Ruby Hash key()用法及代碼示例
- Ruby Hash each()用法及代碼示例
- Ruby Hash eql?用法及代碼示例
- Ruby Hash key?()用法及代碼示例
- Ruby Hash any?()用法及代碼示例
- Ruby Hash merge!用法及代碼示例
- Ruby Hash rehash用法及代碼示例
- Ruby Time hash用法及代碼示例
- Ruby Hash compare_by_identity()用法及代碼示例
- Ruby Hash keys()用法及代碼示例
- Ruby Hash has_key?()用法及代碼示例
- Ruby Hash member?用法及代碼示例
- Ruby Range hash()用法及代碼示例
- Ruby Hash merge用法及代碼示例
注:本文由純淨天空篩選整理自Kirti_Mangal大神的英文原創作品 Ruby | Hash values function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。