天天躁日日躁狠狠躁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)系我們修改或刪除,多謝。

主站蜘蛛池模板: 亚洲精品无码成人AAA片 | 神马电影院午夜神福利在线观看 | 美女被黑人巨大进入 | 玩高中女同桌肉色短丝袜脚文 | 在教室伦流澡到高潮H免费视频 | 欧美成人无码A区在线观看免费 | 中文字幕无码乱人伦蜜桃 | 97人妻AV天天澡夜夜爽 | 伊人影院2019 | 伊人情人网综合 | 欧美日韩视频高清一区 | 国产欧美日韩综合精品一区二区 | 成人中文字幕在线观看 | 在线电影一区二区 | 亚洲国产精品嫩草影院久久 | 国产成人无码区免费内射一片色欲 | 开心久久激情 | 动漫女生的逼 | 年轻漂亮的妺妺中文字幕版 | 色欲蜜臀AV免费视频 | 含羞草完整视频在线播放免费 | 日本一卡二卡三卡四卡无卡免费播放 | 精品伊人久久 | 小货SAO边洗澡边CAO你动漫 | 伊人久久网国产伊人 | 97精品少妇偷拍蜜桃AV | 伊人国产在线播放 | 超熟女专门志 | 国产 浪潮AV性色四虎 | 久久本道久久综合伊人 | 久久精品日本免费线 | 亚洲福利区 | 把英语老师强奷到舒服动态图 | 在线观看永久免费网址 | 天天狠狠弄夜夜狠狠躁·太爽了 | 给个男人都懂的网址2019 | 人妻中文字幕乱人伦在线 | 日韩精品一区二区三区AV在线观看 | 精品国产一区二区三区久久影院 | 亚洲日韩欧美国产中文在线 | 女性爽爽影院免费观看 |