
设计模式
知欲
这个作者很懒,什么都没留下…
展开
-
设计模式之享元模式
先看下列代码:public class FlyWeightMode { public static void main(String[] args) { Integer i1 = 13; Integer i2 = 13; System.out.println(i1 == i2);原创 2010-01-10 16:17:00 · 277 阅读 · 0 评论 -
设计模式之享元模式
先看下列代码: public class FlyWeightMode { public static void main(String[] args) { Integer i1 = 13; Integer i2 = 13; System.out.println(i1 ==...原创 2010-02-04 19:28:07 · 103 阅读 · 0 评论