JavaScript繼承詳解(二)

dapan發表於2021-09-09

這一章我們將會重點介紹JavaScript中幾個重要的屬性(this、constructor、prototype), 這些屬性對於我們理解如何實現JavaScript中的類和繼承起著至關重要的作用。

this

this表示當前物件,如果在全域性作用範圍內使用this,則指代當前頁面物件window; 如果在函式中使用this,則this指代什麼是根據執行時此函式在什麼物件上被呼叫。 我們還可以使用apply和call兩個全域性方法來改變函式中this的具體指向。

先看一個在全域性作用範圍內使用this的例子:

        

 

函式中的this是在執行時決定的,而不是函式定義時,如下:

        // 定義一個全域性函式        function foo() {            console.log(this.fruit);        }        // 定義一個全域性變數,等價於window.fruit = "apple";        var fruit = "apple";        // 此時函式foo中this指向window物件        // 這種呼叫方式和window.foo();是完全等價的        foo();  // "apple"        // 自定義一個物件,並將此物件的屬性foo指向全域性函式foo        var pack = {            fruit: "orange",            foo: foo        };        // 此時函式foo中this指向window.pack物件        pack.foo(); // "orange"

 

全域性函式apply和call可以用來改變函式中this的指向,如下:

        // 定義一個全域性函式        function foo() {            console.log(this.fruit);        }                // 定義一個全域性變數        var fruit = "apple";        // 自定義一個物件        var pack = {            fruit: "orange"        };                // 等價於window.foo();        foo.apply(window);  // "apple"        // 此時foo中的this === pack        foo.apply(pack);    // "orange"

注:apply和call兩個函式的作用相同,唯一的區別是兩個函式的引數定義不同。

 

因為在JavaScript中函式也是物件,所以我們可以看到如下有趣的例子:

        // 定義一個全域性函式        function foo() {            if (this === window) {                console.log("this is window.");            }        }                // 函式foo也是物件,所以可以定義foo的屬性boo為一個函式        foo.boo = function() {            if (this === foo) {                console.log("this is foo.");            } else if (this === window) {                console.log("this is window.");            }        };        // 等價於window.foo();        foo();  // this is window.                // 可以看到函式中this的指向呼叫函式的物件        foo.boo();  // this is foo.                // 使用apply改變函式中this的指向        foo.boo.apply(window);  // this is window.

 

prototype

我們已經在第一章中使用prototype模擬類和繼承的實現。 prototype本質上還是一個JavaScript物件。 並且每個函式都有一個預設的prototype屬性。
如果這個函式被用在建立自定義物件的場景中,我們稱這個函式為建構函式。 比如下面一個簡單的場景:

        // 建構函式        function Person(name) {            this.name = name;        }        // 定義Person的原型,原型中的屬性可以被自定義物件引用        Person.prototype = {            getName: function() {                return this.name;            }        }        var zhang = new Person("ZhangSan");        console.log(zhang.getName());   // "ZhangSan"

作為類比,我們考慮下JavaScript中的資料型別 - 字串(String)、數字(Number)、陣列(Array)、物件(Object)、日期(Date)等。 我們有理由相信,在JavaScript內部這些型別都是作為建構函式來實現的,比如:

        // 定義陣列的建構函式,作為JavaScript的一種預定義型別        function Array() {            // ...        }                // 初始化陣列的例項        var arr1 = new Array(1, 56, 34, 12);        // 但是,我們更傾向於如下的語法定義:        var arr2 = [1, 56, 34, 12];

同時對陣列操作的很多方法(比如concat、join、push)應該也是在prototype屬性中定義的。
實際上,JavaScript所有的固有資料型別都具有隻讀的prototype屬性(這是可以理解的:因為如果修改了這些型別的prototype屬性,則哪些預定義的方法就消失了), 但是我們可以向其中新增自己的擴充套件方法。

        // 向JavaScript固有型別Array擴充套件一個獲取最小值的方法        Array.prototype.min = function() {            var min = this[0];            for (var i = 1; i 


注意:這裡有一個陷阱,向Array的原型中新增擴充套件方法後,當使用for-in迴圈陣列時,這個擴充套件方法也會被迴圈出來。
下面的程式碼說明這一點(假設已經向Array的原型中擴充套件了min方法):

        var arr = [1, 56, 34, 12];        var total = 0;        for (var i in arr) {            total += parseInt(arr[i], 10);        }        console.log(total);   // NaN

解決方法也很簡單:

        var arr = [1, 56, 34, 12];        var total = 0;        for (var i in arr) {            if (arr.hasOwnProperty(i)) {                total += parseInt(arr[i], 10);            }        }        console.log(total);   // 103

 

constructor

constructor始終指向建立當前物件的建構函式。比如下面例子:

        // 等價於 var foo = new Array(1, 56, 34, 12);        var arr = [1, 56, 34, 12];        console.log(arr.constructor === Array); // true        // 等價於 var foo = new Function();        var Foo = function() { };        console.log(Foo.constructor === Function); // true        // 由建構函式例項化一個obj物件        var obj = new Foo();        console.log(obj.constructor === Foo); // true                // 將上面兩段程式碼合起來,就得到下面的結論        console.log(obj.constructor.constructor === Function); // true

 

但是當constructor遇到prototype時,有趣的事情就發生了。
我們知道每個函式都有一個預設的屬性prototype,而這個prototype的constructor預設指向這個函式。如下例所示:

        function Person(name) {            this.name = name;        };        Person.prototype.getName = function() {            return this.name;        };        var p = new Person("ZhangSan");                console.log(p.constructor === Person);  // true        console.log(Person.prototype.constructor === Person); // true        // 將上兩行程式碼合併就得到如下結果        console.log(p.constructor.prototype.constructor === Person); // true

當時當我們重新定義函式的prototype時(注意:和上例的區別,這裡不是修改而是覆蓋), constructor的行為就有點奇怪了,如下示例:

        function Person(name) {            this.name = name;        };        Person.prototype = {            getName: function() {                return this.name;            }        };        var p = new Person("ZhangSan");        console.log(p.constructor === Person);  // false        console.log(Person.prototype.constructor === Person); // false        console.log(p.constructor.prototype.constructor === Person); // false

為什麼呢?
原來是因為覆蓋Person.prototype時,等價於進行如下程式碼操作:

        Person.prototype = new Object({            getName: function() {                return this.name;            }        });

而constructor始終指向建立自身的建構函式,所以此時Person.prototype.constructor === Object,即是:

        function Person(name) {            this.name = name;        };        Person.prototype = {            getName: function() {                return this.name;            }        };        var p = new Person("ZhangSan");        console.log(p.constructor === Object);  // true        console.log(Person.prototype.constructor === Object); // true        console.log(p.constructor.prototype.constructor === Object); // true

怎麼修正這種問題呢?方法也很簡單,重新覆蓋Person.prototype.constructor即可:

        function Person(name) {            this.name = name;        };        Person.prototype = new Object({            getName: function() {                return this.name;            }        });        Person.prototype.constructor = Person;        var p = new Person("ZhangSan");        console.log(p.constructor === Person);  // true        console.log(Person.prototype.constructor === Person); // true        console.log(p.constructor.prototype.constructor === Person); // true


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/758/viewspace-2800195/,如需轉載,請註明出處,否則將追究法律責任。

相關文章