gpt4 book ai didi

JavaScript 对象子类

转载 作者:数据小太阳 更新时间:2023-10-29 05:39:54 26 4
gpt4 key购买 nike

我想创建继承自父类(super class) A 的子类 B。我的代码在这里:

function A(){
this.x = 1;
}

B.prototype = new A;
function B(){
A.call(this);
this.y = 2;
}
b = new B;
Console.log(b.x + " " + b.y );

运行时,显示B未定义。

最佳答案

您必须在尝试访问其原型(prototype)之前定义 B 构造函数:

function A(){
this.x = 1;
}

function B(){
A.call(this);
this.y = 2;
}

B.prototype = new A;

b = new B;
console.log(b.x + " " + b.y ); // outputs "1 2"

关于JavaScript 对象子类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1204359/

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