溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

js中class類、super和extends關鍵詞的示例分析

發(fā)布時間:2021-08-09 13:55:44 來源:億速云 閱讀:162 作者:小新 欄目:開發(fā)技術

小編給大家分享一下js中class類、super和extends關鍵詞的示例分析,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

正文

1.es6之前創(chuàng)建對象

先來看下es6之前我們要想創(chuàng)建一個對象,只能通過構造函數(shù)的方式來創(chuàng)建,將靜態(tài)方法添加在原型上面使得每一個實例能夠調用該方法。

function Person(name, age) {
            this.name = name
            this.age = age
            Person.prototype.sayHello = function () {
                return "hello," + this.name + ",早上好"
            }
        }
        let person = new Person("serendipity", 18)
        console.log(person.sayHello())//hello,serendipity,早上好
        console.log(person instanceof Person);//true
        console.log(person instanceof Object);//true

2.es6之后class的聲明

類是用于創(chuàng)建對象的模板,他們用代碼封裝數(shù)據(jù)以處理該數(shù)據(jù)。js中的 class 類建立在原型之上,但也具有某些語法和語義與ES5類相似語義共享。

實際上,類是一種特殊的函數(shù),就像定義函數(shù)聲明和函數(shù)表達式一樣,類的語法也有兩個部分組成:類聲明和類表達式。

class Person {
            constructor(name, age) {//自有屬性,該屬性出現(xiàn)在實例上,只能在類的構造器或者方法內部進行創(chuàng)建
                this.name = name
                this.age = age
            }
            sayHello() {//等價于Perosn.prototype.sayHello
                return `hello,${this.name},早上好`
            }
        }
        let person = new Person("serendipity", 18)
        console.log(person.sayHello());//hello,serendipity,早上好
        console.log(person instanceof Person);//true
        console.log(person instanceof Object);//true
        console.log(typeof Person);//function
        console.log(typeof Person.prototype.sayHello);//function

類聲明允許在class中使用 constructor 方法定義一個構造器,而不需要定義專門的構造方法來當構造器使用。

class 類的語法與普通es5之前的函數(shù)語法相似,但是還存在一些特性需要注意:

 ?。?)類的聲明不會被提升,類的聲明行為和 let 相似,因此執(zhí)行時類會存在暫時性死區(qū);

 ?。?)類中所有代碼自動運行在嚴格模式下,且改嚴格模式無法退出

 ?。?) 類中所有方法都是不可枚舉的,普通自定義方法只有通過 object.defineProperty() 才能將方法定義為不可枚舉

 ?。?)類中的所有方法內部都沒有 [[construct]] ,因此使用new 來調用他們會拋出錯誤

  (5)調用類構造器時不使用 new 會拋出錯誤

 ?。?)試圖在類的方法內部重寫類名會拋出錯誤

將上面的代碼轉換為ES5之前的寫法如下:

let PersonClass = (function () {
            "use strict"
            const PersonClass = function (name, age) {
                // 判斷是否被new調用構造函數(shù)
                if (typeof new.target === "undefined") {
                    throw new Error("Constructor must be call with new.")
                }
                this.name = name
                this.age = age
            }
            Object.defineProperty(PersonClass.prototype, "sayHello", {
                value: function () {
                    if (typeof new.target !== "undefined") {//保正調用時沒有使用new
                        throw new Error("Method cannot be called with new.")
                    }
                    return "hello," + this.name + ",早上好!"
                },
                enumerable: false,
                configurable: true,
                writable: true
            })
            return PersonClass
        })()
        var personClass = new PersonClass("serendipity", 18)
        console.log(personClass.name);//serendipity
        console.log(personClass.sayHello());///hello,serendipity,早上好!

兩個PersonClass 聲明,一個在外部作用域的 let 聲明,另一個在立即執(zhí)行函數(shù)內部的 const 聲明,這就是為何類的方法不能對類名進行重寫,而類的外部的代碼則被允許。同時,只在類的內部類名才被視為使用了const聲明,這意味著你可以在外部(相當于let)重寫類名,但是不能在類的方法內部這么寫。

3.類的繼承

ES6之前的繼承方式主要通過構造函數(shù)和原型鏈組合的方式來實現(xiàn)繼承,具體代碼如下:

function Rectangle(length, width) {
            this.length = length
            this.width = width
            Rectangle.prototype.getArea = function () {
                return this.length * this.width
            }
        }
        function Square(length) {
            Rectangle.call(this, length, length)
        }
        Square.prototype = Object.create(Rectangle.prototype, {
            constructor: {
                value: Square,
                enumerble: true,
                writeable: true,
                configurable: true
            }
        })
        var square = new Square(3)
        console.log(square.getArea());//9
        console.log(square instanceof Square);//true
        console.log(square instanceof Rectangle);//true

上面的代碼通過構造函數(shù)和原型上面添加靜態(tài)方法實現(xiàn)了 Rectangle 父類,然后子類 Square 通過 Rectangle.call(this,length,length) 調用了父類的構造函數(shù),Object.create 會在內部創(chuàng)建一個空對象來連接兩個原型對象,再手動將 constructor 指向自身。這種方法實現(xiàn)繼承代碼繁雜且不利用理解,于是ES6 class 類的創(chuàng)建讓繼承變得更加簡單,使用extends 關鍵字來指定當前類所需要繼承的父類,生成的類的原型會自動調整,還可以使用 super() 方法來訪問基類的構造器。具體代碼如下:

class Rectangle {
            constructor(length, width) {
                this.length = length
                this.width = width
            }
            getArea() {
                return this.length * this.width
            }
        }
        class Square extends Rectangle {
            constructor(length) {
                super(length, length)
            }
            getArea() {
                return this.length + this.length
            }

        }
        var square = new Square(3)
        console.log(square.getArea());//6
        console.log(square instanceof Square);//true
        console.log(square instanceof Rectangle);//true

上面的代碼中 Square 類重寫了基類的 getArea() 方法,當派生的子類中函數(shù)名和基類中函數(shù)同名的時候,派生類的方法會屏蔽基類的方法,同時也可以再子類中getArea () { return super.getArea() }中調用基類的方法進行擴展。

4.繼承類的靜態(tài)成員

靜態(tài)成員:直接在構造器上添加的額外的方法。例如ES5中在原型上添加的方法就屬于靜態(tài)成員,ES6 class類引入簡化了靜態(tài)成員的創(chuàng)建,只需要在方法與訪問器屬性的名稱前添加 static關鍵字即可。例如下面的代碼用于區(qū)分靜態(tài)方法和實例方法。

function PersonType(name) {
        this.name = name;
    }
    // 靜態(tài)方法
    PersonType.create = function(name) {
        return new PersonType(name);
    };
    // 實例方法
    PersonType.prototype.sayName = function() {
        console.log(this.name);
    };  var person = PersonType.create("Nicholas");

在ES6中要想使用靜態(tài)成員如下:

class Rectangle {
            constructor(length ,width) {
                this.length = length
                this.width = width
            }
            getArea() {
                return this.length * this.width
            }
            static create(length,width) {
                return new Rectangle(length , width)
            }
        }
        class Square extends Rectangle{
            constructor (length){
                super(length,length)
            }
        }
        var square =Square.create(3,4)
        console.log(square.getArea());//12
        console.log(square instanceof Square);//false
        console.log(square instanceof Rectangle);//true

上面的代碼中,一個新的靜態(tài)方法 create() 被添加到 Rectangle 類中,通過繼承,以Square.create() 的形式存在,并且其行為方式與Rectangle.create() 一樣。需要注意靜態(tài)成員不懂通過實例來訪問,始終需要直接調用類自身來訪問他們。

以上是“js中class類、super和extends關鍵詞的示例分析”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業(yè)資訊頻道!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內容。

AI