日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

ES6 继承(复习原型链继承)

發布時間:2025/6/15 25 豆豆
生活随笔 收集整理的這篇文章主要介紹了 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 继承(复习原型链继承)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。