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


Ruby Enumerable each_with_index()用法及代码示例


可枚举的each_with_index()是Ruby中的一种内置方法,它根据给定的块对可枚举中的项目进行哈希处理。如果没有给出块,则返回一个枚举数。

用法: enu.each_with_index { |obj| block }

参数:该函数采用用于初始化各个对象索引的块。


返回值:如果没有给出块,则返回枚举数,否则将哈希该项目。

例子1

# Ruby program for each_with_index method in Enumerable 
  
# Initialize  
hashing = Hash.new
enu = [7, 9, 10] 
  
  
enu.each_with_index { |item, index| 
  hashing[item] = index 
} 
  
# prints hash 
puts hashing

输出

{7=>0, 9=>1, 10=>2}

例子2

# Ruby program for each_with_index method in Enumerable 
  
# Initialize  
hashing = Hash.new
enu = [7, 9, 10] 
  
  
enu.each_with_index

输出

Enumerator: [7, 9, 10]:each_with_index


相关用法


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