一区二区久久-一区二区三区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.
};
利用閉包在單件模式中實現私有方法和私有變量:
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.
實現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,轉載需保留來源!

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

主站蜘蛛池模板: 亚洲国产97在线精品一区 | 99久久精品国语对白 | 欧美综合视频 | 久久精品视频网站 | 九九热亚洲精品综合视频 | 狠狠狠很橹影院 | 久久精品二区 | 亚洲国产乱码在线精品 | 国产xx肥老妇视频奂费 | 1区2区3区集团有限公司 | 一区二区三区四区视频在线观看 | 久久综合久久久久 | 国产男人午夜视频在线观看 | 伊人首页| 欧美yw精品日本国产精品 | 日本xxx在线观看免费播放 | 一级做a爰片性色毛片思念网 | 日本加勒比在线观看 | 久久综合久久鬼 | 欧美精品v国产精品v日韩精品 | 日韩一区二区三区免费 | 国产精品视频大全 | 欧美一级艳片爽快片 | 国产麻豆91 | 亚洲午夜国产精品无卡 | 五月婷婷丁香在线观看 | 精品福利一区 | 国产免费网 | 国产成人短视频 | 免费一级毛片不卡不收费 | 天天干精品 | 中文字幕精品一区 | 四虎影视国产永久免费 | 久久综合香蕉久久久久久久 | 麻豆国产在线视频 | 国产91播放 | 国产床戏无遮挡免费观看网站 | 国产高清国内精品福利99久久 | 亚洲精品乱码国产精品乱码 | 91色视| 日韩久草 |