Array#sort!():sort!()是一個Array類方法,該方法返回已排序的self數組。
用法:Array.sort!()
參數:數組
返回:將自我數組排序到位。
範例1:
# Ruby code for sort!() method
# declaring array
a = ["abc", "nil", "dog"]
# declaring array
c = ["cat", "efg", "geeks"]
# declaring array
b = ["cow", "coal", "dog"]
arr = [a, b, c]
# sort! method example
puts "sort!() method form:#{arr.sort!()}\n\n"
輸出:
sort!() method form:[["abc", "nil", "dog"], ["cat", "efg", "geeks"], ["cow", "coal", "dog"]]
範例2:
# Ruby code for sort!() method
# declaring array
a = ["abc", "nil", "dog"]
# declaring array
c = ["cat", "efg", "geeks"]
# declaring array
b = ["cow", "coal", "dog"]
# sort! method example
puts "sort!() method form:#{a.sort!()}\n\n"
puts "sort!() method form:#{b.sort!()}\n\n"
puts "sort!() method form:#{c.sort!()}\n\n"
輸出:
sort!() method form:["abc", "dog", "nil"] sort!() method form:["coal", "cow", "dog"] sort!() method form:["cat", "efg", "geeks"]
相關用法
- Ruby Array sort()用法及代碼示例
- Ruby Enumerable sort()用法及代碼示例
- Ruby Array none?()用法及代碼示例
- Ruby Array take()用法及代碼示例
- Ruby Array min()用法及代碼示例
- Ruby Array pop()用法及代碼示例
- Ruby Array zip()用法及代碼示例
- Ruby Array one?()用法及代碼示例
- Ruby Array max()用法及代碼示例
- Ruby Array map()用法及代碼示例
- Scala Array &()用法及代碼示例
- Ruby Array slice()用法及代碼示例
- Ruby Array shuffle!()用法及代碼示例
注:本文由純淨天空篩選整理自mayank5326大神的英文原創作品 Ruby | Array sort!() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。