摘要: /* 一、单例模式 */ var Universe; (function () { var instance; Universe = function Universe() { if (instance) { return instance; } instance = this; }; }()... 阅读全文
posted @ 2015-08-03 14:04 RyanRuan 阅读(162) 评论(0) 推荐(0) 编辑
View Code