javascript - 为什么在函数定义之外引用静态变量(函数属性)?

标签 javascript

我在看 Static variables in JavaScript我注意到我之前看到的一些东西,函数已定义,函数定义之后,函数原型(prototype)被更新:

function MyClass () { // constructor function
  //function definition here
}

//now add a (static?) method *outside* the function definition
MyClass.prototype.publicMethod = function () {
  alert(this.publicVariable);
};

//add a static property *outside* the function definition
MyClass.staticProperty = "baz";

这是我的问题 - 为什么不在函数定义中定义它们,如下所示:

  function MyFunc(){
    MyFunc.staticVar = 1;
    //static method showing static var
    MyFunc.showVarStatic  = function(){
        alert(MyFunc.staticVar);
    }
    //instance method referring to static var
    this.showVarInstance = function(){
        alert(MyFunc.staticVar);
    }
    //instance method - doesn't change static var
    this.inc1 = function(){
        this.staticVar += 1;//no such property
    }
    //static method, changes var
    this.inc2 = function(){
        MyFunc.staticVar += 1;//increments static property
    }
  }

这似乎在 IE8、FF 和 Chrome 中表现得像预期的那样。这只是个人喜好/风格吗?我喜欢它,因为我的整个功能都包含在那些大括号中。

[编辑:在做了更多的阅读和实验之后,我更好地理解了 javascript 函数构造函数,以及它们与 C# 类等有何不同 - 这是我用来演示的一些代码这个]

//this is deceiving, notSoStaticVar won't exist until MyFunc1 has been run
//and then it will be reset whenever MyFunc1 (a constructor) is run
function MyFunc1(){
    MyFunc1.notSoStaticVar = "I belong to MyFunc1";
    this.instanceVar = "I belong to instances of MyFunc1";
}

//this code will be run inline one time, 
//so the static property of MyFunc2 will exist
//(I like how all the functionality is in one code block, but it's kind of messy)
MyFunc2 = (function(){
    var temp = function(){
        this.instanceVar = "I belong to an instance of MyFunc2";
    }
    temp.staticVar = "I belong to MyFunc2";
    return temp;
})();

//this seems to be equivalent to MyFunc2, but the code is cleaner
MyFunc3 = function(){
}
MyFunc3.prototype.instanceVar = "I belong to an instance of MyFunc3";
MyFunc3.staticVar = "I belong to MyFunc3";

//tests
console.log(MyFunc1.notSoStaticVar);//undefined!
var a = new MyFunc1();
console.log(MyFunc1.notSoStaticVar);//"I belong to MyFunc1"
console.log(a.instanceVar);//"I belong to instances of MyFunc1"
MyFunc1.notSoStaticVar = "I will be changed when another instance of MyFunc1 is created";
console.log(MyFunc1.notSoStaticVar);//"I will be changed when another instance of MyFunc1 is created"
var b = new MyFunc1();
console.log(MyFunc1.notSoStaticVar);//"I belong to MyFunc1" - was reset by constructor!

//now test MyFunc2
console.log(MyFunc2.staticVar);//"I belong to MyFunc2"
MyFunc2.staticVar = "I am not affected by the construction of new MyFunc2 objects";
var c = new MyFunc2();
console.log(c.instanceVar);//"I belong to an instance of MyFunc2"
console.log(MyFunc2.staticVar);//"I am not affected by the construction of new MyFunc2 objects"

//now test MyFunc3
console.log(MyFunc3.staticVar);//"I belong to MyFunc3"
MyFunc3.staticVar = "I am not affected by the construction of new MyFunc3 objects";
var d = new MyFunc3();
console.log(d.instanceVar);//"I belong to an instance of MyFunc3"
console.log(MyFunc3.staticVar);//"I am not affected by the construction of new MyFunc3 objects"

//interesting
console.log(c);//"temp" <-- not really intuitive!
console.log(d);//"MyFunc3" <-- makes sense

最佳答案

简而言之:性能。

在函数内部定义它们将导致每次调用构造函数时都重新定义它们。

虽然这会按预期运行,但它只是无缘无故的开销。

关于javascript - 为什么在函数定义之外引用静态变量(函数属性)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11006641/

相关文章:

javascript - 如何确定 IE 中动态加载图像的 img 宽度/高度?

javascript - Discord Bot javascript 对提及使用react

javascript - 借助 color jquery 或任何其他方法保存颜色

javascript - 需要帮助循环使用 Ajax 和 Laravel 中从数据库获取的 Json 数据响应内容

javascript - Gradle 有序源集

javascript - 在拖放中中断跨度

javascript - 我可以告诉 Web 浏览器不要缓存特定文件吗?

javascript - 转到 # 超链接上的特定选项卡 (accordin)

javascript - 我不想在 asp.net mvc web/intranet 应用程序中关闭支持 javascript

JavaScript + 查询字符串 + div