一区二区久久-一区二区三区www-一区二区三区久久-一区二区三区久久精品-麻豆国产一区二区在线观看-麻豆国产视频

JavaScript 設計模式學習 Singleton

復制代碼 代碼如下:
/* Basic Singleton. */
var Singleton = {
attribute1: true,
attribute2: 10,
method1: function() {
},
method2: function(arg) {
}
};
單件模式最主要的用途之一就是命名空間:
/* GiantCorp namespace. */
var GiantCorp = {};
GiantCorp.Common = {
// A singleton with common methods used by all objects and modules.
};
GiantCorp.ErrorCodes = {
// An object literal used to store data.
};
GiantCorp.PageHandler = {
// A singleton with page specific methods and attributes.
};
利用閉包在單件模式中實現(xiàn)私有方法和私有變量:
GiantCorp.DataParser = (function() {
// Private attributes.
var whitespaceRegex = //s+/;
// Private methods.
function stripWhitespace(str) {
return str.replace(whitespaceRegex, '');
}
function stringSplit(str, delimiter) {
return str.split(delimiter);
}
// Everything returned in the object literal is public, but can access the
// members in the closure created above.
return {
// Public method.
stringToArray: function(str, delimiter, stripWS) {
if(stripWS) {
str = stripWhitespace(str);
}
var outputArray = stringSplit(str, delimiter);
return outputArray;
}
};
})(); // Invoke the function and assign the returned object literal to
// GiantCorp.DataParser.
實現(xiàn)Lazy Instantiation 單件模式:
MyNamespace.Singleton = (function() {
var uniqueInstance; // Private attribute that holds the single instance.
function constructor() { // All of the normal singleton code goes here.
...
}
return {
getInstance: function() {
if(!uniqueInstance) { // Instantiate only if the instance doesn't exist.
uniqueInstance = constructor();
}
return uniqueInstance;
}
}
})();
MyNamespace.Singleton.getInstance().publicMethod1();

JavaScript技術JavaScript 設計模式學習 Singleton,轉載需保留來源!

鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯(lián)系我們修改或刪除,多謝。

主站蜘蛛池模板: 玖玖国产精品 | 高清国产一区二区三区 | 激情综合在线观看 | 夜夜穞狠狠穞 | 国内精品手机在线观看视频 | 成年网站在线播放 | 日韩中文字幕免费版 | 视频精品一区二区三区 | 国产欧美精品区一区二区三区 | 久久综合香蕉久久久久久久 | www日本在线观看 | 国产高清小视频 | 国产精品91av | 国产区一区二 | www欧美视频 | 伊人色综合久久天天网 | 69热视频在线观看免费自拍 | aa级国产女人毛片水真多 | 国产性精品 | 四虎国产精品永久地址99新强 | 亚洲欧美在线综合一区二区三区 | 欧美人与z0z0xxxx | 色爱区综合激月婷婷激情五月 | 亚洲综合伊人色一区 | 国内精品久久久久久中文字幕 | 综合丁香 | 搞黄网站免费看 | 天天插伊人| 欧美在线观看视频 | 久久精品免视看国产成人2021 | 中文字幕99在线精品视频免费看 | 手机在线看黄 | 国产精品青草久久久久福利99 | 亚洲国产最新 | 草草草视频在线观看 | 久久综合狠狠色综合伊人 | 欧美在线网址 | 在线国产视频 | 激情综合欧美 | 黄视频观看 | 黄网站在线观看高清免费 |