
设计模式
iteye_8127
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
设计模式空间图
设计模式原创 2008-09-09 21:31:45 · 146 阅读 · 0 评论 -
singleton的几种写法(孔乙己?)
// ex1 public class Singleton { private Singleton(){} private static Singleton instance = new Singleton(); public static Singleton getInstance() { return instance; } } //...原创 2010-02-24 09:10:01 · 150 阅读 · 0 评论 -
infoq的“心灵鸡汤”
最近一段时间,在infoq看到的视频演讲,个人比较喜欢,暂且视为开发路上的“心灵鸡汤”吧 广联达敏捷之路 http://www.infoq.com/cn/presentations/lxd-glodon-agile 大规模视频网站的计费与流量管理 http://www.infoq.com/cn/presentations/hd-large-scale-video-website ...原创 2012-05-14 09:49:47 · 206 阅读 · 0 评论