If I create an object with certain properties, then use this to create another object (by passing it to a constructor) which will be initialised with those properties, this would seem to be a Prototype, but this is a little different from the GoF pattern - any thoughts? --- DannyAyers
- Looks like a CopyConstructor to me. --- LairdNelson
- You would lose the advantage of polymorphism that the GoF formulation of the Prototype pattern gives you. -- NatPryce