1.1如何优雅的创建对象
你创建的对象有以下不优雅之处,你造么?
每new 一次 Class,你都将往内存中塞一堆数据,程序占有的内存会越来越大。
- Factory Pattern 
- Abstract Factory Pattern 
- Singleton Pattern 
- Builder Pattern 
- Prototype Pattern 
Last updated
Was this helpful?
你创建的对象有以下不优雅之处,你造么?
每new 一次 Class,你都将往内存中塞一堆数据,程序占有的内存会越来越大。
Factory Pattern
Abstract Factory Pattern
Singleton Pattern
Builder Pattern
Prototype Pattern
Last updated
Was this helpful?