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