我的Typescript中有以下代码:但是它在child._moveDeltaX(delta)
行报告以下错误:
ERROR: Property '_moveDeltaX' is protected and only accesible
through an instance of class 'Container'
INFO: (method) Drawable._moveDeltaX( delta:number):void
代码如下:
class Drawable {
private _x:number = 0;
constructor() {}
/**
* Moves the instance a delta X number of pixels
*/
protected _moveDeltaX( delta:number):void {
this._x += delta;
}
}
class Container extends Drawable {
// List of childrens of the Container object
private childs:Array<Drawable> = [];
constructor(){ super();}
protected _moveDeltaX( delta:number ):void {
super._moveDeltaX(delta);
this.childs.forEach( child => {
// ERROR: Property '_moveDeltaX' is protected and only accesible
// through an instance of class 'Container'
// INFO: (method) Drawable._moveDeltaX( delta:number):void
child._moveDeltaX(delta);
});
}
}
我哪里错了?我以为你可以使用受保护的方法。在其他语言中,这段代码可以正常工作。
您的" children "对象不在继承对象的可见性中。您刚刚创建了一个不能访问受保护方法的新实例。您可以使用super访问受保护的方法,但不能用于其他实例。
这在c#中也会失败(我认为)。