我正在尝试覆盖'<'运算符,因为我想要实现的类(TimeCal)的SortedCollection。
TimeCal有以下变量:年月日小时分钟。
我的想法是将所有变量转换为分钟,然后将其与compare进行比较;操作员接收。然而,我确实收到了一个错误
"BlockClosure(Object)>>doesNotUnderstand:#>"
这是我的代码:
< comparand
| thisInMins comparandInMins |
thisInMins := [(year * 525600) + (month * 43829) + (day * 1440) + (hour * 60) + minute].
comparandInMins := [(comparand year * 525600) + (comparand month * 43829) + (comparand day * 1440) + (comparand hour * 60) + comparand minute].
(thisInMins > comparandInMins)
ifTrue: [true] ifFalse: [false]
我用来测试它的代码:
time1 := TimeCal new.
time1 hour: 12.
time1 day: 12.
time1 month: 11.
time2 := TimeCal new.
time2 hour: 12.
time2 day: 12.
time2 month: 8.
testing := time1 < time2.
我不确定我所做的是否正确。我找不到任何正确的指南。
这个怎么样
< other
year = other year ifFalse: [^year < other year].
month = other month ifFalse: [^month < other month].
day = other day ifFalse: [^day < other day].
hour = other hour ifFalse: [^hour < other hour].
^minute < other minute
如果您已经正确初始化了变量,这应该会起作用:
< comparand
| thisInMins comparandInMins |
thisInMins := (year * 525600) + (month * 43829) + (day * 1440) + (hour * 60) + minute.
comparandInMins := (comparand year * 525600) + (comparand month * 43829) + (comparand day * 1440) + (comparand hour * 60) + comparand minute.
^ thisInMins < comparandInMins
你为什么在计算分钟数时加上方括号?
也可以看看这个:ifTrue: [true] ifFalse: [false]
。如果某件事是真的,则返回真,如果某件事情是假的,则返回假似乎是不必要的步骤。您可以直接返回分钟比较的结果。