Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Python __lt__ __gt__ 사용자 정의(과부하된) 연산자를 구현하는 방법은 무엇입니까?


Python에는 연산자의 오버로드된 동작을 정의하는 마법의 메서드가 있습니다. 비교 연산자(<, <=,>,>=, ==및 !=)는 __lt__, __le__, __gt__, __ge__, __eq__ 및 __ne__ 매직 메서드에 정의를 제공하여 오버로드될 수 있습니다. 다음 프로그램은 <및> 연산자를 오버로드하여 거리 클래스의 개체를 비교합니다.

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 __lt__(self, other):
    in1=self.ft*12+self.inch
    in2=other.ft*12+other.inch
    if in1<in2:
      return "first object smaller than other"
    else:
      return "first object not smaller than other"

  def __gt__(self, other):
    in1=self.ft*12+self.inch
    in2=other.ft*12+other.inch
    if in1<in2:
      return "first object greater than other"
    else:
      return "first object not greater 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)

결과는 __lt__ 및 _gt__ 매직 메서드의 구현을 보여줍니다.

first object not greater than other
first object not smaller than other
first object smaller than other