I mean this more exactly:
我更准确地说是这个:
var MyClass = function(){
return {
init: function(a, b, c){
this.__a = a;
this.__b = b;
this.__c = c;
}
,doSomething: function(){
// when to use this:
this.__subThingType1();
// or this?
this.__subThingType2(this.__a, this.__b, this.__c);
}
,__subThingType1: function(){
var a = this.__a;
var b = this.__b;
var c = this.__c;
// do dirty things with a, b and c
}
,__subThingType2: function(a, b, c){
// do dirty things with a, b and c
}
}
var My