gpt4 book ai didi

javascript - this.constructor.SomeVarible 与 OOP JS 中的 this.SomeVarible

转载 作者:行者123 更新时间:2023-11-30 10:46:52 25 4
gpt4 key购买 nike

那么下面2个例子有什么区别呢?

var SomeFn = function (name){this.constructor.SomeVarible = name}

var SomeFn = function (name){this.SomeVarible = name}

最佳答案

假设你有

var obj = new SomeFn('foo');

在第一种情况下,值将分配给 SomeFn.SomeVarible,因为 this.constructor 引用 SomeFn。实际上,我看不出有人会这样做的原因,但如果有人有想法,请告诉我。

在第二种情况下,它会被赋值给obj.SomeVariable,因为this指的是新创建的对象,赋值给obj >.

关于javascript - this.constructor.SomeVarible 与 OOP JS 中的 this.SomeVarible,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7842177/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com