可枚舉的sort()是Ruby中的一種內置方法,它返回一個包含按排序順序包含枚舉項的數組。使用運算符或可選塊進行比較。該塊必須實現a和b之間的比較,並且當b跟隨a時返回小於0的整數,當a和b相等時返回0,或者當a跟隨b時返回大於0的整數。返回的結果不穩定。當兩個元素的比較返回0時,元素的順序不穩定。
用法: enu.sort { |a, b| block }
參數:該函數接受可選的比較塊。
返回值:返回一個數組。
例子1:
# Ruby program for sort method in Enumerable
# Initialize
enu = (1..10)
# Prints
enu.sort
輸出:
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
例子2:
# Ruby program for sort method in Enumerable
# Initialize
enu = [10, 9, 8, 12, 10, 13]
# Prints
enu.sort {|a, b| a <=> b}
輸出:
[8, 9, 10, 10, 12, 13]
相關用法
- Ruby Enumerable any?用法及代碼示例
- Ruby Enumerable max()用法及代碼示例
- Ruby Enumerable min()用法及代碼示例
- Ruby Enumerable first()用法及代碼示例
- Ruby Enumerable map()用法及代碼示例
- Ruby Enumerable all?用法及代碼示例
- Ruby Enumerable one?用法及代碼示例
- Ruby Enumerable none?()用法及代碼示例
- Ruby Enumerable take()用法及代碼示例
- Ruby Enumerable sum()用法及代碼示例
- Ruby Enumerable collect()用法及代碼示例
- Ruby Enumerable entries()用法及代碼示例
- Ruby Enumerable group_by()用法及代碼示例
- Ruby Enumerable min_by()用法及代碼示例
- Ruby Enumerable minmax_by()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby | Enumerable sort() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。