javascript:如何重写某个类的所有实例的方法?

发布于 2024-12-08 17:46:26 字数 392 浏览 0 评论 0原文

function Person(){
    this.scream = function(){
        alert('NO NO NO!!!!');
    };
}

var steve = new Person();
steve.scream() // NO NO NO!!!!
Person.prototype.scream = function(){
    alert('YES YES YES!!!!');
}
steve.scream() // still NO NO NO!!!!

有没有办法在不明确引用 steve 的情况下覆盖“尖叫”?考虑一下当您有多个 Person 实例时的情况。

function Person(){
    this.scream = function(){
        alert('NO NO NO!!!!');
    };
}

var steve = new Person();
steve.scream() // NO NO NO!!!!
Person.prototype.scream = function(){
    alert('YES YES YES!!!!');
}
steve.scream() // still NO NO NO!!!!

Is there a way to override 'scream' without referencing steve explicitly? Think about the cases when you have may instances of Person.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

提赋 2024-12-15 17:46:26

不,

有了 Person 声明,每次您创建它的新“实例”时,“构造函数”都会运行,并且您将创建一个全新的 scream 函数(闭包) ),除了新创建的对象 steve.scream 之外,您没有任何引用。

作为替代方案,您可以这样做:

function Person(){}

Person.prototype.scream = function(){
    alert('NO NO NO!!!!');
}

var steve = new Person();
steve.scream() // NO NO NO!!!!
Person.prototype.scream = function(){
    alert('YES YES YES!!!!');
}
steve.scream() // this time is YES YES YES!!!!

在这种情况下,初始的“方法”仅在原型上的一个位置可用,并且您可以为所有“实例”覆盖它。

No,

Having that Person declaration, every time you create a new "instance" of it the "constructor" will run and you'll create a completely new scream function (closure) which you don't have any reference to, except from the newly created object, steve.scream that is.

As an alternative you may do it like this:

function Person(){}

Person.prototype.scream = function(){
    alert('NO NO NO!!!!');
}

var steve = new Person();
steve.scream() // NO NO NO!!!!
Person.prototype.scream = function(){
    alert('YES YES YES!!!!');
}
steve.scream() // this time is YES YES YES!!!!

In which case the initial scream "method" is available only in one place, on the prototype, and you can overwrite it for all "instances".

彡翼 2024-12-15 17:46:26
function Person(){};
Person.prototype.scream = function(){ alert('NO NO NO!!!!'); };
var steve = new Person();
steve.scream();
Person.prototype.scream = function(){alert('YES YES YES!!!!');};
steve.scream();
function Person(){};
Person.prototype.scream = function(){ alert('NO NO NO!!!!'); };
var steve = new Person();
steve.scream();
Person.prototype.scream = function(){alert('YES YES YES!!!!');};
steve.scream();
无人接听 2024-12-15 17:46:26

并且,如果您想继续使用您的代码风格,您可能会喜欢

function Person(){
    this.constructor.prototype.scream = function(){
        alert('NO NO NO!!!!');
    };
}
var steve = new Person();
steve.scream();
Person.prototype.scream = function(){ alert('YES YES YES!!!!'); };
steve.scream();

and, if you want to continue to use your code style, you may like

function Person(){
    this.constructor.prototype.scream = function(){
        alert('NO NO NO!!!!');
    };
}
var steve = new Person();
steve.scream();
Person.prototype.scream = function(){ alert('YES YES YES!!!!'); };
steve.scream();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文