可枚舉的count()是Ruby中的一個內置方法,它返回可枚舉中的元素數或等於給定元素的元素數,或滿足給定塊中條件的項目數。
用法: block.count { |obj| block } or block.count(element)
參數:該函數帶有一個塊或一個項目。如果兩者都不使用,則返回可枚舉元素的數量。
返回值:返回元素數。
例子1:
# Ruby program for count method in Enumerable
# Initialize
enu = [12, 18]
# returns enumerator
res = enu.count
輸出:
2
例子2:
# Ruby program for count method in Enumerable
# Initialize
enu = [12, 18, 12]
# returns enumerator
res = enu.count(12)
輸出:
2
例子3:
# Ruby program for count method in Enumerable
# Initialize
enu = [12, 18, 16, 18]
# returns enumerator
res = enu.count { |el| el > 13}
輸出:
3
相關用法
- Ruby Enumerable map()用法及代碼示例
- Ruby Enumerable max()用法及代碼示例
- Ruby Enumerable first()用法及代碼示例
- Ruby Enumerable take()用法及代碼示例
- Ruby Enumerable min()用法及代碼示例
- Ruby Enumerable sum()用法及代碼示例
- Ruby Enumerable one?用法及代碼示例
- Ruby Enumerable none?()用法及代碼示例
- Ruby Enumerable all?用法及代碼示例
- Ruby Enumerable any?用法及代碼示例
- Ruby Enumerable partition()用法及代碼示例
- Ruby Enumerable max_by()用法及代碼示例
- Ruby Enumerable minmax()用法及代碼示例
- Ruby Enumerable sort()用法及代碼示例
- Ruby Enumerable cycle()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby | Enumerable count() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。