可枚举的select()是Ruby中的一个内置方法,它返回可枚举中满足给定条件的项目。如果没有给出块,它将返回一个枚举数。
用法: enu.select { |obj| block }
参数:该函数采用一个块,其条件用于查找元素。
返回值:返回满足该块条件的枚举中的项目。如果没有给出块,则返回一个枚举数。
例子1:
# Ruby program for select method in Enumerable
# Initialize
enu = (1..10)
# Prints
enu.select { |obj| obj % 2 == 1}
输出:
[1, 3, 5, 7, 9]
例子2:
# Ruby program for select method in Enumerable
# Initialize
enu = [1, 7, 10, 11]
# Prints
enu.select
输出:
Enumerator: [1, 7, 10, 11]:select
相关用法
- Ruby Enumerable all?用法及代码示例
- Ruby Enumerable max()用法及代码示例
- Ruby Enumerable min()用法及代码示例
- Ruby Enumerable map()用法及代码示例
- Ruby Enumerable take()用法及代码示例
- Ruby Enumerable sum()用法及代码示例
- Ruby Enumerable first()用法及代码示例
- Ruby Enumerable none?()用法及代码示例
- Ruby Enumerable any?用法及代码示例
- Ruby Enumerable one?用法及代码示例
- Ruby Enumerable find_index()用法及代码示例
- Ruby Enumerable each_witth_object()用法及代码示例
- Ruby Enumerable grep()用法及代码示例
- Ruby Enumerable entries()用法及代码示例
- Ruby Enumerable find_all()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby | Enumerable select() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。