小編給大家分享一下ES6中類和對象的示例,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
公司主營業(yè)務:成都網(wǎng)站設計、網(wǎng)站建設、移動網(wǎng)站開發(fā)等業(yè)務。幫助企業(yè)客戶真正實現(xiàn)互聯(lián)網(wǎng)宣傳,提高企業(yè)的競爭能力。創(chuàng)新互聯(lián)建站是一支青春激揚、勤奮敬業(yè)、活力青春激揚、勤奮敬業(yè)、活力澎湃、和諧高效的團隊。公司秉承以“開放、自由、嚴謹、自律”為核心的企業(yè)文化,感謝他們對我們的高要求,感謝他們從不同領域給我們帶來的挑戰(zhàn),讓我們激情的團隊有機會用頭腦與智慧不斷的給客戶帶來驚喜。創(chuàng)新互聯(lián)建站推出丹徒免費做網(wǎng)站回饋大家。1.基本定義和生成實例
{ class Parent { constructor(name = 'haha') { this.name = name; } } let parent = new Parent('v'); console.log('構造函數(shù)和實例', parent); // Parent {name: "v"} }
2.繼承
{ class Parent { constructor(name = 'haha') { this.name = name; } } class Child extends Parent { } console.log('繼承', new Child()); // Child {name: "haha"} }
3.繼承傳遞參數(shù)
{ class Parent { constructor(name = 'haha') { this.name = name; } } class Child extends Parent { constructor(name = 'child') { // super()方法,用來解決 繼承怎么傳遞參數(shù)(怎么覆蓋父類的參數(shù)) // super的參數(shù)列表就是父類構造函數(shù)的參數(shù)列表,如果參數(shù)為空,就采用父類的參數(shù)默認值 super(name); // super必須放在構造函數(shù)第一行 this.type = 'child'; } } console.log('繼承傳遞參數(shù)', new Child('hello')); // Child {name: "hello", type: "child"} }
4.getter setter
{ class Parent { constructor(name = 'haha') { this.name = name; } // longName 是一個屬性,不是方法 get longName() { return 'lu-' + this.name; } // longName 是一個屬性,不是方法 set longName(value) { this.name = value; } } let person = new Parent(); console.log('getter', person.longName); // lu-haha person.longName = 'hello'; console.log('setter', person.longName); // lu-hello }
5.靜態(tài)方法
{ class Parent { constructor(name = 'haha') { this.name = name; } // static 關鍵字用來定義靜態(tài)方法 static tell() { console.log('do tell'); } } // 靜態(tài)方法,直接通過類去調用,不是通過實例 Parent.tell(); // do tell }
6.靜態(tài)屬性
{ class Parent { constructor(name = 'haha') { this.name = name; } } // 直接在類上定義靜態(tài)屬性 Parent.type = 'test'; // 讀取靜態(tài)屬性時,也是直接拿類讀取 console.log(Parent.type); // test }
看完了這篇文章,相信你對“ES6中類和對象的示例”有了一定的了解,如果想了解更多相關知識,歡迎關注創(chuàng)新互聯(lián)網(wǎng)站制作公司行業(yè)資訊頻道,感謝各位的閱讀!