私はPythonでグラフライブラリに取り組んでおり、vetexを次のように定義しています。
class Vertex:
def __init__(self,key,value):
self._key = key
self._value = value
@property
def key(self):
return self._key
@key.setter
def key(self,newKey):
self._key = newKey
@property
def value(self):
return self._value
@value.setter
def value(self,newValue):
self.value = newValue
def _testConsistency(self,other):
if type(self) != type(other):
raise Exception("Need two vertexes here!")
def __lt__(self,other):
_testConsistency(other)
if self.index <= other.index:
return True
return False
......
本当に__lt__、__ eq __、__ ne __....すべてを自分で定義する必要がありますか?とても冗長です。これを回避する簡単な方法はありますか?乾杯。__cmp__はPython3で使用できなくなるため、使用しないでください。