可枚舉的max_by()是Ruby中的一個內置方法,它返回一個滿足給定塊條件的最大元素數組。沒有給出塊時,它將返回一個枚舉數。
用法: enu.max_by(n) {|obj| block}
參數:該函數采用兩個參數n和block。 N表示max_byimum元素的數量,塊表示條件。
返回值:返回一個max元素或包含N個max元素的數組。
例子1:
# Ruby program for max_by method in Enumerable
# Initialize
a = ["gopal", "tunday", "geeks", "classes", "linux"]
# Prints
p a.max_by(2) {|obj| obj.length }
p a.max_by {|obj| obj.length }
輸出:
["classes", "tunday"] "classes"
例子2:
# Ruby program for max_by method in Enumerable
# Initialize
a = ["gopal", "tunday", "geeks", "classes", "linux"]
# Prints
p a.max_by(2)
p a.max_by
輸出:
Enumerator: ["gopal", "tunday", "geeks", "classes", "linux"]:max_by(2) Enumerator: ["gopal", "tunday", "geeks", "classes", "linux"]:max_by
相關用法
- Ruby Enumerable none?()用法及代碼示例
- Ruby Enumerable first()用法及代碼示例
- Ruby Enumerable any?用法及代碼示例
- Ruby Enumerable max()用法及代碼示例
- Ruby Enumerable all?用法及代碼示例
- Ruby Enumerable min()用法及代碼示例
- Ruby Enumerable sum()用法及代碼示例
- Ruby Enumerable take()用法及代碼示例
- Ruby Enumerable one?用法及代碼示例
- Ruby Enumerable map()用法及代碼示例
- Ruby Enumerable find()用法及代碼示例
- Ruby Enumerable flat_map用法及代碼示例
- Ruby Enumerable detect()用法及代碼示例
- Ruby Enumerable cycle()用法及代碼示例
- Ruby Enumerable count()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby | Enumerable max_by() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。