ruby `sort_by ':Array与Array的比较失败(无nil数据)

mw3dktmi  于 2023-06-22  发布在  Ruby
关注(0)|答案(2)|浏览(147)
class CustomSorter
  attr_accessor :start_date, :available

  def initialize(start_date, available)
    @start_date = Time.mktime(*start_date.split('-'))
    @available = available
  end

end

cs1 = CustomSorter.new('2015-08-01', 2)
cs2 = CustomSorter.new('2015-08-02', 1)
cs3 = CustomSorter.new('2016-01-01', 1)
cs4 = CustomSorter.new('2015-02-01', 3)
cs5 = CustomSorter.new('2015-03-01', 4)

sorted = [cs1, cs2, cs3, cs4, cs5].sort_by { |cs| [Time.now <= cs.start_date, (cs.available || 0)] }

puts sorted.map(&:start_date)

但它失败了:
custom_sortter.rb:17:在`sort_by '中:数组与数组的比较失败(ArgumentError)
我知道nil可能会产生这个错误。但我的数据中没有零。

qq24tv8q

qq24tv8q1#

当排序算法比较创建的数组[Time.now <= cs.start_date, (cs.available || 0)]时,它会按元素进行比较。
初始元素是布尔值。没有为布尔值定义顺序。

irb(main):001:0> true <=> false
=> nil

你可以通过创建整数值来解决这个问题,例如:

[cs1, cs2, cs3, cs4, cs5].sort_by { |cs| [Time.now <= cs.start_date ? 0 : 1, (cs.available || 0)] }
hgqdbh6s

hgqdbh6s2#

只是注意到这让我有几分钟的时间。如果你的哈希同时有字符串和符号作为键,同样的错误也会发生,而且并不完全明显。

相关问题