设计模式(java源码实现)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
188 B

4 years ago
# 享元模式
简介:共享对象,避免浪费
使用内存大的就是"重"对象
使用内存小的就是"轻"对象
4 years ago
通过尽量共享实例来避免new 出实例