可枚舉的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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。