我正在使用 JavaScript 中的类继承方法之一(在我正在修改的代码中使用),但不明白如何将子类中方法的附加功能附加到相应父类方法已经具有的功能; 换句话说,我想用一种方法覆盖子类中父类的方法,除了它自己的子类特定的东西之外,它的作用也与父类的方法相同。所以,我试图从孩子的方法中调用父母的方法,但它甚至可能吗?
代码在这里:http: //jsfiddle.net/7zMnW/。请打开开发控制台查看输出。
代码也在这里:
function MakeAsSubclass (parent, child)
{
child.prototype = new parent; // No constructor arguments possible at this point.
child.prototype.baseClass = parent.prototype.constructor;
child.prototype.constructor = child;
child.prototype.parent = child.prototype; // For the 2nd way of calling MethodB.
}
function Parent (inVar)
{
var parentVar = inVar;
this.MethodA = function () {console.log("Parent's MethodA sees parent's local variable:", parentVar);};
this.MethodB = function () {console.log("Parent's MethodB doesn't see parent's local variable:", parentVar);};
}
function Child (inVar)
{
Child.prototype.baseClass.apply(this, arguments);
this.MethodB = function ()
{
console.log("Child's method start");
Child.prototype.MethodB.apply(this, arguments); // 1st way
this.parent.MethodB.apply(this, arguments); // 2 2nd way
console.log("Child's method end");
};
}
MakeAsSubclass(Parent, Child);
var child = new Child(7);
child.MethodA();
child.MethodB();