可枚举的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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。