JavaScript 极简教程 ES6 ES7让前端飞Web前端之路

掌握js的原型链与继承,看这篇就够了

2018-01-30  本文已影响116人  darrell
最经典的原型链示意图

一:继承的几种方式

继承需要一个父类,在这里我们先把他定义出来:

// 定义一个动物类
function Animal (name) {
    // 属性
    this.name = name || 'Animal';
    this.sleep = function(){
        console.log(this.name + '正在睡觉!');
    }
}

// 原型方法
Animal.prototype.eat = function(food) {
    console.log(this.name + '正在吃:' + food);
};

1,原型链继承

原型链继承的核心是,将父类的实例作为子类的原型

function Cat(){
    this.name = 'cat'
}

Cat.prototype = new Animal();
Cat.prototype.name = 'cat';//将Cat的原型名字设为Cat,这句话必须放在new之后
Cat.prototype.constructor = Cat;//将Cat的原型链constructer指向Cat,防止出现混乱

// Test Code
var cat = new Cat();

console.log(cat.name);// cat
console.log(cat.eat('fish'));//cat正在吃fish 
console.log(cat.sleep());//cat正在睡觉
console.log(cat instanceof Animal); //true 
console.log(cat instanceof Cat); //true

特点

缺点

对于第四点举个例子:

function Parents(name){ this.name=name; }
Children.prototype=new Parents("Hello");

那么此时,Children 类就拥有了 name=“Hello” 属性,而 Children 类的实例对象 c1、c2、c3 等等只能被迫接受这个 name 属性。Children 是 "Hello" 的拥有者而 c1、 c2、c3不是!

2,构造继承

function Cat(name){
    Animal.call(this);
    this.name = name || 'Tom';
}

// Test Code
var cat = new Cat('fujiawei');

console.log(cat.name);//fujiawei
console.log(cat.sleep());//fujiawei 正在睡觉
console.log(cat.eat());//Uncaught TypeError: cat.eat is not a function( 缺点是第三个 )
console.log(cat instanceof Animal); // false
console.log(cat instanceof Cat); // true

特点

缺点

3,实例继承

function Cat(name){
    var instance = new Animal();
    instance.name = name || 'Tom';
    return instance;
}

// Test Code
var cat = new Cat();

console.log(cat.name);//Tom
console.log(cat.sleep());//Tom正在睡觉
console.log(cat.eat('apple'));//Tom正在吃:apple
console.log(cat instanceof Animal); // true
console.log(cat instanceof Cat); // false

特点

var cat = new Cat()
var cat = Cat()
//1,2步调用的效果相同

缺点

4,拷贝继承

function Cat(name){
    var animal = new Animal();
    for(var p in animal){
        Cat.prototype[p] = animal[p];
    }
    Cat.prototype.name = name || 'Tom';
}

// Test Code
var cat = new Cat();

console.log(cat.name);// Tom
console.log(cat.sleep());// Tom正在睡觉!
console.log(cat.eat('apple'));// Tom正在吃:apple
console.log(cat instanceof Animal); // false
console.log(cat instanceof Cat); // true

优点

缺点

5,组合继承

function Cat(name){
    Animal.call(this);
    this.name = name || 'Tom';
}
Cat.prototype = new Animal();

// Test Code
var cat = new Cat();

console.log(cat.name);//Tom
console.log(cat.sleep());//Tom正在睡觉
console.log(cat.eat('apple'));//Tom正在吃:apple
console.log(cat instanceof Animal); // true
console.log(cat instanceof Cat); // true

特点

缺点

6,寄生组合继承

function Cat(name){
    Animal.call(this);
    this.name = name || 'Tom';
}
(function(){
    // 创建一个没有实例方法的类
    var Super = function(){};
    Super.prototype = Animal.prototype;
    //将实例作为子类的原型
    Cat.prototype = new Super();
})();

Test Code
var cat = new Cat();
console.log(cat.name);
console.log(cat.sleep());
console.log(cat instanceof Animal); // true
console.log(cat instanceof Cat); //true

特点

缺点

最主要的是创建一个空函数F(),并将其原型设置为父级构造器,然后我们既可以用new F()来创建一些不包含父对象属性的对象,同时可以从父对象的prototype中继承一切了;

上一篇下一篇

猜你喜欢

热点阅读