天天躁日日躁狠狠躁AV麻豆-天天躁人人躁人人躁狂躁-天天澡夜夜澡人人澡-天天影视香色欲综合网-国产成人女人在线视频观看-国产成人女人视频在线观看

JavaScript 設(shè)計(jì)模式學(xué)習(xí) Singleton

復(fù)制代碼 代碼如下:
/* 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.
};
利用閉包在單件模式中實(shí)現(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.
實(shí)現(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技術(shù)JavaScript 設(shè)計(jì)模式學(xué)習(xí) Singleton,轉(zhuǎn)載需保留來源!

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

主站蜘蛛池模板: 日本激情网址 | 99精产国品一二产区在线 | 国产网址在线观看 | 丰满的女友1在线观看 | 国产在线成人一区二区三区 | 国内卡一卡二卡三免费网站 | 影视先锋男人无码在线 | 99久久免热在线观看6 | 四虎国产精品永久免费入口 | 如懿传免费观看在线全集 | 日本视频一区二区免费观看 | 秋霞在线看片无码免费 | 国产亚洲精品免费视频 | 国产精品久久久久永久免费看 | 综合伊人久久 | 亚洲精品免费网站 | hd性欧美俱乐部中文 | 激情床戏视频片段有叫声 | 成人在线不卡视频 | 国产精品高清在线观看93 | 麻豆国产人妻欲求不满 | 三级黃60分钟 | 福利一区福利二区 | 国产一区二区三区四区五在线观看 | 精品国产午夜福利在线观看蜜月 | 中文字幕乱码一区AV久久 | 国精产品一区一区三区有限 | 美女直播喷水 | 后入内射国产一区二区 | 欧美在线激情 | 蜜桃久久久亚洲精品成人 | 国产AV电影区二区三区曰曰骚网 | 久久久久久久99精品免费观看 | 97亚洲狠狠色综合久久久久 | 在线观看国产人视频免费中国 | 晓雪老师我要进你里面好爽 | 6080yy 久久 亚洲 日本 | 中文字幕本庄优花喂奶 | 亚欧乱亚欧乱色视频 | 猪蜜蜜网站在线观看电视剧 | 色就色综合 |