父类
继承其原型
对象的构造函数除了继承的方法之外,还可以有自己的方法。
请看举例:Bird
是一个构造函数,它继承了Animal
构造函数的原型
:
```js
function Animal() { }
Animal.prototype.eat = function() {
console.log("nom nom nom");
};
function Bird() { }
Bird.prototype = Object.create(Animal.prototype);
Bird.prototype.constructor = Bird;
```
除了从Animal
构造函数继承的行为之外,还需要给Bird
对象添加它独有的行为。这里,我们给Bird
对象添加一个fly()
函数。函数会以一种与其他构造函数相同的方式添加到Bird
的原型
中:
```js
Bird.prototype.fly = function() {
console.log("I'm flying!");
};
```
现在Bird
的实例中就有了eat()
和fly()
这两个方法:
```js
let duck = new Bird();
duck.eat(); // prints "nom nom nom"
duck.fly(); // prints "I'm flying!"
```
Dog
对象继承Animal
构造函数,并且把Dog 原型
上的 constructor 属性设置为 Dog。然后给Dog
对象添加一个bark()
方法,这样的话,beagle
将同时拥有eat()
和bark()
这两个方法。bark()
方法中应该输出 "Woof!" 到控制台。
Animal
应该没有bark()
方法。
testString: assert(typeof Animal.prototype.bark == "undefined");
- text: Dog
应该继承了Animal
构造函数的eat()
方法。
testString: assert(typeof Dog.prototype.eat == "function");
- text: Dog
应该有一个bark()
方法作为自身
属性。
testString: assert(Dog.prototype.hasOwnProperty('bark'));
- text: beagle
应该是Animal
的一个instanceof
。
testString: assert(beagle instanceof Animal);
- text: beagle
的 constructor 属性应该被设置为Dog
。
testString: assert(beagle.constructor === Dog);
```