4. What do you mean by a prototype? Define analysis
prototype
Answer Posted / som shekhar
Prototype is creational design pattern similar to abstract
factory pattern.
Most of you know abstract factory pattern, in the prototype
pattern when you want to create a clone of an object of some
class, then instead of creating directly the clone that
means using new operator and step by step copying the
elements, or you will be calling the copy constructor of the
class.
But in the real time applications we dont want the copy
constructor to be called so it is made as private, and hence
you cannot copy the items, so this design patterns says that
if you want to create the clone of a class, keep the clone
fucntion as virtual in the base class and let the derived
class implement...this is one aspect.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is polymorphism programming?
Can enum be null?
Can you inherit a private class?
What is difference between inheritance and polymorphism?
What is the benefit of oop?
What is abstraction with example?
What is abstract class in oop?
What is constructor overloading in oop?
INSTANCE FIELDS DECLARED private ARE ACCESSIBLE BY THE METHODS ONLY.CAN WE CHANGE THE private FIELD OF AN OBJECT IN A METHOD OF SOME OTHER OBJECT OF THE SAME CLASS?
Which language is pure oop?
Why polymorphism is used in oops?
Can main method override?
What is polymorphism what is it for and how is it used?
What is byval and byref? What are differences between them?
write knight tour problem which is present in datastructure