本文簡要介紹ruby語言中 Array.max
的用法。
用法
max → element
max {|a, b| ... } → element
max(n) → new_array
max(n) {|a, b| ... } → new_array
返回以下之一:
-
self
中的 maximum-valued 元素。 -
從
self
中選擇的 maximum-valued 元素的新數組。
當沒有給出塊時,self
中的每個元素都必須使用整數響應方法<=>
。
沒有參數也沒有塊,返回 self
中每個方法具有最大值的元素 <=>
:
[0, 1, 2].max # => 2
使用參數 Integer n
且沒有塊,返回一個新數組,其中最多包含 n
元素,按方法 <=>
降序排列:
[0, 1, 2, 3].max(3) # => [3, 2, 1]
[0, 1, 2, 3].max(6) # => [3, 2, 1, 0]
給定一個塊時,該塊必須返回一個整數。
使用塊且不帶參數,調用塊self.size-1
次來比較元素;返回每個塊中具有最大值的元素:
['0', '00', '000'].max {|a, b| a.size <=> b.size } # => "000"
使用參數 n
和一個塊,返回一個最多包含 n
元素的新數組,按塊的降序排列:
['0', '00', '000'].max(2) {|a, b| a.size <=> b.size } # => ["000", "00"]
相關用法
- Ruby Array.map!用法及代碼示例
- Ruby Array.map用法及代碼示例
- Ruby Array.minmax用法及代碼示例
- Ruby Array.min用法及代碼示例
- Ruby Array.push用法及代碼示例
- Ruby Array.hash用法及代碼示例
- Ruby Array.to_a用法及代碼示例
- Ruby Array.to_h用法及代碼示例
- Ruby Array.to_s用法及代碼示例
- Ruby Array.array + other_array用法及代碼示例
- Ruby Array.take()用法及代碼示例
- Ruby Array.reject!用法及代碼示例
- Ruby Array.flatten!用法及代碼示例
- Ruby Array.reject用法及代碼示例
- Ruby Array.repeated_permutation()用法及代碼示例
- Ruby Array.index()用法及代碼示例
- Ruby Array.pack()用法及代碼示例
- Ruby Array.rassoc(obj)用法及代碼示例
- Ruby Array.values_at()用法及代碼示例
- Ruby Array.each用法及代碼示例
- Ruby Array.fetch用法及代碼示例
- Ruby Array.flatten用法及代碼示例
- Ruby Array.sort用法及代碼示例
- Ruby Array.unshift()用法及代碼示例
- Ruby Array.reverse用法及代碼示例
注:本文由純淨天空篩選整理自ruby-lang.org大神的英文原創作品 Array.max。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。