Ruby 枚举collect()函数

Ruby 枚举collect()函数

enumerablecollect() 是Ruby中的一个内置方法,它为enum中的每个元素返回一个带有运行块结果的新数组。每次对每个枚举的对象都会重复。如果没有给出对象,它对每个枚举都返回nil。

语法 :(r1..r2).collect { |obj| block }

参数 :该函数接收对象和每个枚举的块,它还接收r1和r2,以决定返回的枚举元素的数量。

返回值 :它返回一个新的数组。

例子 1 :

# Ruby program for collect? method in Enumerable
  
# returns enumerator
enu1 = (2..6).collect {|x| x * 10}

输出:

[20, 30, 40, 50, 60]

例2 :

# Ruby program for collect? method in Enumerable
  
  
# returns an enumerator with nil
enu1 = (2..6).collect {}

输出:

[nil, nil, nil, nil, nil]

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程