为了账号安全,请及时绑定邮箱和手机立即绑定

抽象类的具体实现

这个 抽象类的实现类怎么写?老师求教

正在回答

3 回答

function DetectorBase(){

throw new Error('Abstract class can not be invoked directly!');

}

DetectorBase.prototype.detect=function(){

console.log('Detection starting');

}

DetectorBase.prototype.stop=function(){

console.log('Detector stopped.');

}

DetectorBase.prototype.init=function(){

throw new Error('Error');

}

function LinkDetector(){


}

LinkDetector.prototype=Object.create(DetectorBase.prototype);

LinkDetector.prototype.constructor=LinkDetector;

var link=new LinkDetector();

/**重写init*/

link.init=function(){

console.log(this);

}

link.detect();

link.stop();

link.init();

我是这样理解的,不知道对不对。你参考参考。

0 回复 有任何疑惑可以回复我~
#1

Web_dlf

视频中的代码有错误,感觉你这个是对的!跟我想的一样
2016-04-18 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

抽象类的具体实现

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信