摘要: 引子 “请写一个Singleton。”面试官微笑着和我说。 “这可真简单。”我心里想着,并在白板上写下了下面的Singleton实现: 1 class Singleton 2 { 3 public: 4 static Singleton& Instance() 5 { 6 ... 阅读全文
posted @ 2012-07-18 23:35 loveis715 阅读(30997) 评论(64) 推荐(58) 编辑