如何在 Python 中過載比較運算子?
Python 有魔術方法來定義運算子的過載行為。可以透過為 __lt__、__le__、__gt__、__ge__、__eq__ 和 __ne__ 魔術方法提供定義來過載比較運算子(<、<=、>、>=、== 和 !=)。
以下程式過載 == 和 >= 運算子以比較 distance 類的物件。
class distance: def __init__(self, x=5,y=5): self.ft=x self.inch=y def __eq__(self, other): if self.ft==other.ft and self.inch==other.inch: return "both objects are equal" else: return "both objects are not equal" def __ge__(self, other): in1=self.ft*12+self.inch in2=other.ft*12+other.inch if in1>=in2: return "first object greater than or equal to other" else: return "first object smaller than other" d1=distance(5,5) d2=distance() print (d1==d2) d3=distance() d4=distance(6,10) print (d1==d2) d5=distance(3,11) d6=distance() print(d5>=d6)
上述程式的結果顯示了 == 和 >= 比較運算子的過載使用
both objects are equal both objects are equal first object smaller than other
廣告