Update 05.PrototypePattern.md

master
Qiangguo Feng 2021-09-28 22:33:48 +08:00 committed by GitHub
parent 035e5f4a89
commit bd402ae1a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 3 deletions

View File

@ -142,6 +142,8 @@ int main()
return 0; return 0;
} }
``` ```
![avatar](https://github.com/FengJungle/DesignPattern/blob/master/05.PrototypePattern/1.Picture/%E6%B5%85%E6%8B%B7%E8%B4%9D.png)
显然这不是我们想要的结果。接下来我们使用clone方法。 显然这不是我们想要的结果。接下来我们使用clone方法。
#### 4.2.2.示例二:深拷贝 #### 4.2.2.示例二:深拷贝
@ -175,7 +177,7 @@ int main()
} }
``` ```
效果如下图: 效果如下图:
![avatar](https://github.com/FengJungle/DesignPattern/blob/master/05.PrototypePattern/1.Picture/%E6%B7%B1%E6%8B%B7%E8%B4%9D.png)
## 5.原型模式总结 ## 5.原型模式总结