问答详情
源自:8-1 概念与继承

prototype的问题

 function Animal(name) { 

    this.name = name;

 } 

 Animal.prototype = {

    weight: 0, 

    eat: function() { 

        alert( "Animal is eating!" ); 

    } 

 }


 function Mammal() { 

    this.name = "mammal"; 

 } 

 Mammal.prototype = new Animal("animal"); 

 function Horse( height, weight ) { 

    this.name = "horse"; 

    this.height = height; 

    this.weight = weight; 

 }

 Horse.prototype = new Mammal(); 

 Horse.prototype.eat = function() { 

    alert( "Horse is eating grass!" ); 

 }

 var horse = new Horse( 100, 300 ); 

问题:

  1. Horse.prototype===?为true

  2. Mammal.prototype===?为true

  3. Animal.prototype===?为true

提问者:慕设计2087194 2016-11-09 02:51

个回答

  • 慕设计2087194
    2016-11-11 08:42:22

    答案是:

    Horse.prototype===horse.__proto__

    Mammal.prototype===Horse.prototype.__proto__

    Animal.prototype===Mammal.prototype.__proto__

    本来我问问题的疑惑是 不清楚prototype ,proto和constructor它们的作用和意义

    上面例子Animal,Mammal,Horse的prototype都被重写了,Animal.prototype.constructor!==Animal ,Mammal和Horse也是一样,__proto__就是[[proto]]也就是对象的指针,这个对象指针指向自己构造函数的prototype.

  • theecn
    2016-11-09 16:30:15

    你的问号是什么意思