I'm currently writing objects in javascript and I would like to do it in a clear, nice way, using best practices etc. But I'm bothered that I must always write this. to address attributes, unlike in other OO languages.
So I got the idea - why not just use closures for object attributes? Look at my example object. So instead of this, classical way:
var MyObjConstructor = function (a, b) {
// constructor - initialization of object attributes
this.a = a;
this.b = b;
this.var1 = 0;
this.var2 = "hello";
this.var3 = [1, 2, 3];
// methods
this.method1 = function () {
return this.var3[this.var1] + this.var2;
// terrible - I must always write "this." ...
};
}
... I would do it using closure and then I don't need to write this. every time to access the attributes!
var MyObjConstructor = function (a, b) {
// constructor - initialization of object attributes
// the attributes are in the closure!!!
var a = a;
var b = b;
var var1 = 0;
var var2 = "hello";
var var3 = [1, 2, 3];
// methods
this.method1 = function () {
return var3[var1] + var2;
// nice and short
};
// I can also have "get" and "set" methods:
this.getVar1 = function () { return var1; }
this.setVar1 = function (value) { var1 = value; }
}
Also, it has a hidden benefit that the attributes really cannot be accessed any other way than by get/set methods!!
So the question is:
- Is this a good idea? Is it "clean", is it conforming to best practice?
- Are there any other semantical differences between these 2 solutions?
- Are there any traps with using closure like this?
this.propto define a public property, usevar propto define a private property. You cannot use one instead of the other, they serve different purposes. – Šime Vidas Oct 20 '11 at 11:44var propdefines a local variables that can only be accessed inside the constructor or inside functions defined in the constructor. The termprivateis misleading. – Raynos Oct 20 '11 at 11:50