定義自己的<=>
,幷包括相媲美。這是從Comparable doc:
class SizeMatters
include Comparable
attr :str
def <=>(anOther)
str.size <=> anOther.str.size
end
def initialize(str)
@str = str
end
def inspect
@str
end
end
s1 = SizeMatters.new("Z")
s2 = SizeMatters.new("YY")
s3 = SizeMatters.new("XXX")
s4 = SizeMatters.new("WWWW")
s5 = SizeMatters.new("VVVVV")
s1 < s2 #=> true
s4.between?(s1, s3) #=> false
s4.between?(s3, s5) #=> true
[ s3, s2, s5, s4, s1 ].sort #=> [Z, YY, XXX, WWWW, VVVVV]
你實際上並不包括相媲美,但你會得到額外的功能爲免費的,如果你這樣做後具有確定的<=>
。
否則,如果您的對象已實現<=>
,則可以使用Enumerable's sort
和塊。
編輯:使用幾個不同比較的另一種方法是使用lambdas。這使用了新的1.9.2聲明語法:
ascending_sort = ->(a,b) { a <=> b }
descending_sort = ->(a,b) { b <=> a }
[1, 3, 2, 4].sort(& ascending_sort) # => [1, 2, 3, 4]
[1, 3, 2, 4].sort(& descending_sort) # => [4, 3, 2, 1]
foo = ascending_sort
[1, 3, 2, 4].sort(& foo) # => [1, 2, 3, 4]
從字面上看,你可以使用`items.sort! {| x,y | x.my_comparator y}`,但如果這是該類的默認排序行爲,則應該考慮類似Tin Man所具有的內容。 – coreyward 2011-01-07 03:46:18