1.Concept
Specify the kinds of objects to create using a prototypical instance, and create new objects by copying this prototype. - Gof
2.QA
Clone 浅拷贝,复制值类型,不复制引用类型;引用indicate the same object.==
Copy 深拷贝,值类型与引用类型都做复制; Use the Serialization to deep copy the Object.
原型模式创造出的对象拷贝与原有对象存在以下关系。
1、原对象 != 新对象拷贝
2、原对象.equals(新对象拷贝) = true(前提是添加了适当的equals方法)
3、原对象.getClass().equals(新对象拷贝.getClass())
3.Good example.
DOTA, 剑圣,孙悟空。