所以,这就是我可以在 Python 中做的事情:
class Copiable(object):
def copy_from(self, other):
""" This method must be implemented by subclasses to define their
own copy-behaviour. Never forget to call the super-method. """
pass
def copy(self):
""" Creates a new copy of the object the method is called with. """
instance = self.__new__(self.__class__)
instance.copy_from(self)
return instance
class Rectangle(Copiable):
def __init__(self, x, y, w, h):
super(Rectangle, self).__init__()
self.x = x
self.y = y
self.w = w
self.h = h
# Copiable
def copy_from(self, other):
self.x = other.x
self.y = other.y
self.w = other.w
self.h = other.h
super(Rectangle, self).copy_from(self)
我在它的 Java 版本中面临两个问题:
- 我不知道如何创建类似于 Python
__new__
方法的类的实例。 - 我想
Copiable
成为一个接口,但是,我无法实现该clone()
方法。
你能想出解决办法吗?谢谢