Javascript继承3:将优点为我所有----组合式继承

Posted 九转功成

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Javascript继承3:将优点为我所有----组合式继承相关的知识,希望对你有一定的参考价值。

//声明父类
function ParentClass(name){
    //值类型公有属性
    this.name = name
    //引用类型公有属性
    this.books = [‘html]
}
//父类型原型公有方法
ParentClass.prototype.getName = function(){
    console.log(this.name);
}
//声明子类
function ChildClass(name,id){
    //构造函数式继承父类name属性
    ParentClass.call(this,name);
    //子类中新增公有属性
    this.id = id;
}
// 类式继承  子类原型继承父类
ChildClass.prototype = new ParentClass();
// 子类原型方法
ChildClass.prototype.getId = function(){
    console.log(this.id);
}

var child1 = new ChildClass(‘Css‘,1)
child1.books.push(‘图解Css‘);
console.log(child1.books) // [‘Html‘,‘图解Css‘]
child1.getName()          // Css
child1.getId()            // 1


var child2 = new ChildClass(‘javascript‘,2)
console.log(child2.books) // [‘Html‘]
child2.getName()          // Javascript
chil2.getId()             // 2

设计模式中的经典笔录

以上是关于Javascript继承3:将优点为我所有----组合式继承的主要内容,如果未能解决你的问题,请参考以下文章

javascript继承笔记----1024

javascript继承笔记

JavaScript 对象继承

类的继承

javascript高级程序设计的几种经典继承

继承 NotificationCenter 的优点和缺点