码迷,mamicode.com
首页 > 编程语言 > 详细

JavaScript 面向对象的编程(三) 类的继承

时间:2018-03-15 11:19:30      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:value   技术   分享   inf   关系   new   log   检测   img   

定义父类和子类的继承关系

//声明父类
function SuperClass(){
    this.superValue = true;
}

//为父类添加共有方法
SuperClass.prototype.getSuperValue=function(){
    return this.superValue;
}

//声明子类
function SubClass(){
    this.subValue = false;
}

//继承父类
SubClass.prototype = new SuperClass();
SubClass.prototype.getSubValue = function(){
    return this.subValue;
}

var instance = new SubClass();
console.log(instance.getSuperValue());
console.log(instance.getSubValue());

  console.log(instance instanceof SuperClass);
  console.log(instance instanceof SubClass);
  console.log(SubClass instanceof SuperClass);
  console.log(SubClass.prototype instanceof SuperClass);
  console.log(instance instanceof Object);

将父类的实例赋给子类的prototype就实现了 类的继承

类关系的检测

结果如下:

技术分享图片

 

有版权问题请留言,或加我qq362601125

参考列表

1.《JavaScript设计模式》作者张荣铭

JavaScript 面向对象的编程(三) 类的继承

标签:value   技术   分享   inf   关系   new   log   检测   img   

原文地址:https://www.cnblogs.com/mengjianzhou/p/8571540.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!