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


Ruby Array to_h()用法及代码示例


Array#to_h():to_h()是一个Array类方法,该方法返回将ary解释为[key,value]对数组的结果。

用法:Array.to_h()

参数:数组


返回:将ary解释为[key,value]对数组的结果。

示例1:

# Ruby code for to_h() method 
  
# declaring array 
a = [[:foo, :bar], [1, 2]] 
  
# to_h method example 
puts "to_h() method form : #{a.to_h()}\n\n"

输出:

to_h() method form : {:foo=>:bar, 1=>2}

示例2:

# Ruby code for to_h() method 
  
# declaring array 
a = [[:geeks, :geeks], [1, 2]] 
  
# to_h method example 
puts "to_h() method form : #{a.to_h{|s| [s.ord, s]}}\n\n"

输出:

to_h() method form : {:geeks=>:geeks, 1=>2}



相关用法


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