Prototype Pattern

Page content

[TOC]

Brief introduction about prototype pattern.

原型模式

Create objects based on a template of an existing object through cloning. 使用克隆在已有对象的基础上创建对象。

类图

prototype pattern

注意事项:引用类型需要深拷贝。

code example

2019-11-22