ES6 继承(复习原型链继承)
生活随笔
收集整理的這篇文章主要介紹了
ES6 继承(复习原型链继承)
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
2019獨角獸企業重金招聘Python工程師標準>>>
原型鏈繼承
<script type="text/javascript">/* 原型鏈 繼承 */function Animal(name){//parentthis.name = name || "未知";this.say = function(){console.log(this.name + " says interesting....");}}Animal.prototype.eat = function(){console.log(this.name + " can eat...");}//臨時構造函數 這里省略下方的 Dog.prototype = new F();可以替換成Dog.prototype = Object.create(Animal.prototype);function F(){}function Dog(name){//childAnimal.apply(this,arguments);}F.prototype = new Animal()Dog.prototype = new F();Dog.prototype.run = function(){console.log(this.name + " run....");}var dog = new Dog("tom");dog.say();dog.eat();dog.run(); </script>ES6繼承
<script type="text/javascript">/* ES6 繼承 */class Parent{constructor(name){this.name = name;}say(){console.log("parent has say method. " + this.name);}}class Child extends Parent{constructor(name){super(name);}fly(){console.log("chid can fly...");}}var p = new Child("tom");p.say();p.fly(); </script>轉載于:https://my.oschina.net/u/3229305/blog/1648517
總結
以上是生活随笔為你收集整理的ES6 继承(复习原型链继承)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Linux系统管理员修炼三层次
- 下一篇: 3月22日 打卡