Hash#to_proc():to_proc()是一种Hash类方法,它返回一个Proc,该Proc将“键”值映射为“值”值。
用法:Hash.to_proc()
参数:散列值
返回:将“键”值映射到“值”值的过程。
示例1:
# Ruby code for Hash.to_proc() 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}
# to_proc Value
puts "Hash a to_proc form : #{a.to_proc()}\n\n"
puts "Hash b to_proc form : #{b.to_proc()}\n\n"
puts "Hash c to_proc form : #{c.to_proc()}\n\n"
输出:
Hash a to_proc form : # Hash b to_proc form : # Hash c to_proc form : #
示例2:
# Ruby code for Hash.to_proc() 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}
# to_proc Value
puts "Hash a to_proc form : #{a.to_proc()}\n\n"
puts "Hash b to_proc form : #{b.to_proc()}\n\n"
puts "Hash c to_proc form : #{c.to_proc()}\n\n"
输出:
Hash a to_proc form : # Hash b to_proc form : # Hash c to_proc form : #
相关用法
- Ruby Hash value?用法及代码示例
- Ruby Hash to_a用法及代码示例
- Ruby Hash store()用法及代码示例
- Ruby Hash select()用法及代码示例
- Ruby Hash select!()用法及代码示例
- Ruby String hash用法及代码示例
- Ruby Hash to_s用法及代码示例
- Ruby Hash replace()用法及代码示例
- Ruby Hash reject用法及代码示例
- Ruby Hash to_h用法及代码示例
- Ruby Hash length()用法及代码示例
注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 Ruby | Hash to_proc method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。