四虎精品视频-四虎精品成人免费网站-四虎黄色网-四虎国产视频-国产免费91-国产蜜臀97一区二区三区

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)記有誤,請(qǐng)第一時(shí)間聯(lián)系我們修改或刪除,多謝。

主站蜘蛛池模板: 安洁拉芽衣| 隐秘而伟大豆瓣| 章子怡 罗曼蒂克消亡史| 王渝萱林教授最经典的三个角色| 美女被吊在刑房鞭打| 教育向美而生读书心得体会 | av网址大全| 陆时宴沈沐短剧全集| 东山飘雨西关晴| 刑事侦缉档案2剧情介绍| 夏希粟| 花煞| 电锯狂魔| 女人的战争剧情介绍| 《西湖的绿》宗璞| 小丑2双重疯狂免费播放在线观看| 如来神掌电视剧| 永远的乳房 电影| 三人越谷文言文翻译| 性感美女mm| 最佳李纯信| 上错花轿嫁对郎演员| 全国精神病查询系统官网| 饥渴少妇av| 欧美黑人天堂av在线| 泰国av| 韩国一级伦理片| 极度险情| 都市频道节目表| 韩国电影闵度允主演电影| 永远少年电影免费播放| 张勇手演过的电影| 接吻摸胸视频| 卢靖姗的个人资料简介| 女人香韩国电影| 生猴子视频| 羞羞的动漫在线观看| 上门女婿电影完整版免费| 最佳嫌疑人电影免费观看| 美女出水| 大坏蛋|