The objective of prototype pattern is to clone an object by reducing the cost of creation. Here is an example:
class Complex {
int[] nums = {1,2,3,4,5};
public Complex clone() {
return new Complex();//this line create a new object, so is it violate the objective of prototype ?//
}
}
class Test2 {
Complex c1 = new Complex();
Complex makeCopy() {
return (Complex)c1.clone();// Is it actually create a new object ? based on the clone method in Complex class? //
}
public static void main(String[] args) {
Test2 tp = new Test2();
Complex c2 = tp.makeCopy();
}
}
I think it is for deep copy. So, can someone help me on this question ???
What you are saying is partly correct in that the objective of prototype pattern is to reduce cost of creating an object by cloning and avoiding "new".
But that does not mean you can use the pattern just to clone objects. There are other important considerations
To summarize, the prototype's objective is to:
Below is an example that uses a prototypical PageBanner instance to create different types of page banners that vary slightly
Oh and in your case, have your prototype object's class implement the
Cloneable
marker interface