可枚舉的max()是Ruby中的內置方法,它返回可枚舉中的最大元素或包含最大N個元素的數組。當沒有給出塊時,它假定所有元素都是可比較的,但是當給出塊時,使用進行比較。
用法: enu.max(n) { |a, b| block }
參數:該函數采用兩個可選參數n和block。 N表示最大元素數,塊表示比較屬性。
返回值:返回一個max元素或包含N個max元素的數組。
例子1:
# Ruby program for max method in Enumerable
# Initialize
enu1 = (2..6)
# Prints
puts enu1.max
p enu1.max(2)
輸出:
6 [6, 5]
範例#2:
# Ruby program for max method in Enumerable
# Initialize
enu1 = [10, 17, 9, 10, 100, 34]
# Prints
puts enu1.max { |a, b| a<=>b}
p enu1.max(2){ |a, b| a<=>b}
輸出:
100 [100, 34]
相關用法
- Ruby Enumerable one?用法及代碼示例
- Ruby Enumerable none?()用法及代碼示例
- Ruby Enumerable map()用法及代碼示例
- Ruby Enumerable min()用法及代碼示例
- Ruby Enumerable all?用法及代碼示例
- Ruby Enumerable first()用法及代碼示例
- Ruby Enumerable sum()用法及代碼示例
- Ruby Enumerable any?用法及代碼示例
- Ruby Enumerable take()用法及代碼示例
- Ruby Enumerable find_index()用法及代碼示例
- Ruby Enumerable grep_v()用法及代碼示例
- Ruby Enumerable sort()用法及代碼示例
- Ruby Enumerable reverse_each()用法及代碼示例
- Ruby Enumerable grep()用法及代碼示例
- Ruby Enumerable select()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby | Enumerable max() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。