作者: Fe2+ | |
日時: 2005/12/13(22:34) |
Fe2+ です。 「そろそろ終わり」ですか。 At Mon, 12 Dec 2005 23:18:25 +0900 (JST), 機械伯爵 wrote: > 「なんだかわかんないけど、重力に作用されない物体に > 固有の値」 重力が作用するんですよね。 > def __sub__(self, other): > if self.__class__: > v = self.value - other.value > return self.__class__(v) > else: > print "NOT SAME DIMENSION!" > return > def __rsub__(self, other): > if self.__class__: > v = other.value - self.value > return self.__class__(v) > else: > print "NOT SAME DIMENSION!" > return ここの if self.__class__: っていつでも成り立ちますよね。