admin管理员组文章数量:1341470
Is there any benefit when writing JavaScript classes and namespaces of this...
if(typeof MyNamespace === 'undefined'){
var MyNamespace = {};
}
(function(){
MyNamespace.MyClass = function(){
this.property = 'foo'
return this;
}
}());
Versus just this...
if(typeof MyNamespace === 'undefined'){
var MyNamespace = {};
}
MyNamespace.MyClass = function(){
this.property = 'foo'
return this;
}
I have seen the first pattern implemented in a few libraries, and was trying to find how out if there is any added benefit unless some sort of other function was declared inside of the anonymous function in the first example.
Is there any benefit when writing JavaScript classes and namespaces of this...
if(typeof MyNamespace === 'undefined'){
var MyNamespace = {};
}
(function(){
MyNamespace.MyClass = function(){
this.property = 'foo'
return this;
}
}());
Versus just this...
if(typeof MyNamespace === 'undefined'){
var MyNamespace = {};
}
MyNamespace.MyClass = function(){
this.property = 'foo'
return this;
}
I have seen the first pattern implemented in a few libraries, and was trying to find how out if there is any added benefit unless some sort of other function was declared inside of the anonymous function in the first example.
Share Improve this question asked Nov 17, 2011 at 20:55 jcreamer898jcreamer898 8,1795 gold badges43 silver badges57 bronze badges 1- Yeah that's pretty much it. If you need a variable or function in an outside scope of MyClass that you do not want to be global. – John Kalberer Commented Nov 17, 2011 at 21:02
4 Answers
Reset to default 12To your question:
Yes, there is a difference (and benefit). In your first example, you can control access control (meaning using prototype-based version of public/private member variables and functions). As an example:
var m = (function() {
var o = {};
o.myPublicProperty = 0; // can be accessed by instantiated object's calling code
var myPrivateProperty = 1; // can't be accessed outside of this module
o.myPublicFunction = function() {
myPrivateFunction();
return myPrivateProperty;
};
function myPrivateFunction() {
++myPrivateProperty;
++o.myPublicProperty;
}
o.getMyPrivateProperty = function() {
return myPrivateProperty;
}
return o;
})();
console.log(m.myPublicProperty); // 0
console.log(m.getMyPrivateProperty()); // 1
console.log(m.myPrivateProperty); // undefined
console.log(m.myPublicFunction()); // increments
console.log(m.myPublicProperty); // 1
console.log(m.getMyPrivateProperty()); // 2
http://jsfiddle/dbrecht/EQ4Tb/
A little off topic, but this is a little strange to me:
if(typeof MyNamespace === 'undefined'){
var MyNamespace = {};
}
Why not just use: var MyNamespace = MyNamespace || {};
?
I'm not entirely sure of other benefits, but everything declared within the anonymous function will stay in that scope, i.e. it is not declared in the global scope. That can be of benefit.
For the simple case you've shown the immediately executed anonymous function provides no advantages at all.
However, you could declare variables or other functions inside the scope of the anonymous functions and they would effectively be private to your MyClass function. So that's a huge advantage, and even if you don't need private variables now you might later so you could use the anonymous function anyway...
Note also that putting a var statement inside an if is kind of pointless because the declaration (but not the assignment) gets "hoisted" up out of the block.
Yeah, private variables.
var MyNamespace = MyNamespace || {};
(function(){
var priv_var = 'bar';
MyNamespace.MyClass = function(){
this.property = 'foo';
//priv_var is accessible in here
return this;
}
}());
Versus:
var MyNamespace = MyNamespace || {};
var priv_var = 'bar';
MyNamespace.MyClass = function(){
this.property = 'foo';
//priv_var is accessible anywhere
return this;
}
本文标签: Benefits of JavaScript anonymous function with namespacesStack Overflow
版权声明:本文标题:Benefits of JavaScript anonymous function with namespaces - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743653996a2516810.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论