enumerable的collect()是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]
相关用法
- Ruby Matrix collect()用法及代码示例
- Ruby Enumerable take()用法及代码示例
- Ruby Enumerable min()用法及代码示例
- Ruby Enumerable map()用法及代码示例
- Ruby Enumerable first()用法及代码示例
- Ruby Enumerable max()用法及代码示例
- Ruby Enumerable any?用法及代码示例
- Ruby Enumerable sum()用法及代码示例
- Ruby Enumerable one?用法及代码示例
- Ruby Enumerable none?()用法及代码示例
- Ruby Enumerable all?用法及代码示例
- Ruby Enumerable entries()用法及代码示例
- Ruby Enumerable each_with_index()用法及代码示例
- Ruby Enumerable grep()用法及代码示例
- Ruby Enumerable reverse_each()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby | Enumerable collect() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。