首页 > 网站 > WEB开发 > 正文

js模式(一):单例模式

2024-04-27 14:10:07
字体:
来源:转载
供稿:网友

js模式(一):单例模式

function Universe(){         var instance;         Universe = function (){             return instance;         }         Universe.PRototype = this;         console.log(Universe);         instance = new Universe();         instance.constructor = Universe;         instance.start_time = 0;         instance.bng ="dd";         return instance;     }     Universe.prototype.nothint = 1;      console.log(Universe);     var a = new Universe(); console.log(Universe);     var b = new Universe();

单例模式


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表