2010年5月3日
摘要: template<CLASS T> class Singleton{public: static T& Instance() { static T theSingleInstance; //假?设?T有?一?个?protected默?认?构?造?函?数? return theSingleInstance; }};class OnlyOne : public Singleton&... 阅读全文
posted @ 2010-05-03 23:04 Chopper 阅读(282) 评论(0) 推荐(0)