中文字幕日韩一区二区_国产一区二区av_国产毛片av_久久久久国产一区_色婷婷电影_国产一区二区精品

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,轉載需保留來源!

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

主站蜘蛛池模板: 国产免费又色又爽又黄在线观看 | 国产精品a久久久久 | 国产精品视频一二三区 | 成人久久18免费网站图片 | 久久国内 | 日韩成人在线一区 | 在线观看国产91 | 91精品一区二区 | 一级片av | 东京av男人的天堂 | www.国产一区 | 九九伊人sl水蜜桃色推荐 | 一区二区三区在线免费观看视频 | 五十女人一级毛片 | www.久久久久久久久久久久 | 久久久久久久久久久一区二区 | 久久精品国产亚洲 | 天天操天天天 | 日本又色又爽又黄的大片 | 日韩电影免费在线观看中文字幕 | 9久久精品 | 精品成人免费一区二区在线播放 | 人人人干 | 天天天插| 九九久久99 | 超碰av免费| 欧美成人免费在线视频 | 精区3d动漫一品二品精区 | 精品中文字幕视频 | 国产欧美一区二区久久性色99 | 99久久精品国产毛片 | 91色视频在线观看 | 免费在线看a | 伊人久久大香线 | 男人电影天堂 | 激情在线视频 | 久久成人国产 | 麻豆精品一区二区三区在线观看 | 韩日精品视频 | 久久亚洲春色中文字幕久久久 | 亚洲精品日韩在线 |