下面我就為大家帶來一篇淺談javascript中的constructor。現在就分享給大家,也給大家做個參考。
constructor,建構函數,對這個名字,我們都不陌生,constructor總是指向創建當前物件的建構函數。
這裡有一點要注意的是,每個函數都有一個prototype屬性,這個prototype的constructor指向這個函數,這個時候我們修改這個函數的prototype時,就發生了意外。如
function Person(name,age){ this.name = name; this.age = age; } Person.prototype.getAge = function(){ return this.age; } Person.prototype.getName = function(){ return this.name; } var p = new Person("Nicholas",18); console.log(p.constructor); //Person(name, age) console.log(p.getAge()); //18 console.log(p.getName()); //Nicholas
但是如果是這樣:
function Person(name,age){ this.name = name; this.age = age; } Person.prototype = { getName:function(){ return this.name; }, getAge:function(){ return this.age; } } var p = new Person("Nicholas",18); console.log(p.constructor); //Object() console.log(p.getAge()); //18 console.log(p.getName()); //Nicholas
結果constructor變了。
原因就是prototype本身也是對象,上面的程式碼等價於
Person.prototype = new Object({ getName:function(){ return this.name; }, getAge:function(){ return this.age; } });
因為constructor總是指向建立目前物件的建構函數,那麼就不難理解上面程式碼p.constructor 輸出的是Object了。
對於修改了prototype之後的constructor還想讓它指向Person怎麼辦呢?簡單,直接給Person.prototype.constructor賦值就可以了:
Person.prototype = { constructor:Person, getName:function(){ return this.name; }, getAge:function(){ return this.age; } }
上面是我整理給大家的,希望今後會對大家有幫助。
相關文章:
關於JavaScript Array(陣列) 物件的使用方法
#以上是淺談javascript中的constructor_基礎知識的詳細內容。更多資訊請關注PHP中文網其他相關文章!