What is the point of using the prototype pattern above the copy constructor? Example
obj = new ConcretePrototype(); obj2 = new ConcretePrototype(obj); obj2 = obj.Clone(); What is the advantage of the prototype?
What is the point of using the prototype pattern above the copy constructor? Example
obj = new ConcretePrototype(); obj2 = new ConcretePrototype(obj); obj2 = obj.Clone(); What is the advantage of the prototype?
Source: https://ru.stackoverflow.com/questions/606347/
All Articles