采用call方式实现js继承

Hoshi ·
更新时间:2024-09-20
· 960 次阅读

代码如下:
//采用call方式实现js继承
function A(color) {
this.Acolor = color;
this.AshowColor = function() {
document.writeln("Acolor: " + this.Acolor);
}
}
function B(color, name) {
A.call(this, color);
this.Bname = name;
this.BshowName = function() {
document.writeln("Bname: " + this.Bname);
}
}
var objA = new A("red");
objA.AshowColor();
document.writeln("----------------");
var objB = new B("black", "demo");
objB.AshowColor();
objB.BshowName();
document.writeln("----------------");



CALL js继承 js

需要 登录 后方可回复, 如果你还没有账号请 注册新账号