摘要:組合使用構(gòu)造函數(shù)模式和原型模式構(gòu)造函數(shù)模式用于定義實(shí)例屬性,原型模式用于定義方法和共享的屬性。創(chuàng)建對(duì)象組合使用構(gòu)造函數(shù)模式和原型模式指向構(gòu)造函數(shù),這里要將其恢復(fù)為指向構(gòu)造函數(shù)。另外,這種混合模式,還支持向構(gòu)造函數(shù)傳遞參數(shù)。
組合使用構(gòu)造函數(shù)模式和原型模式
構(gòu)造函數(shù)模式用于定義實(shí)例屬性,原型模式用于定義方法和共享的屬性。
創(chuàng)建自定義類型的最常見方式,就是組合使用構(gòu)造函數(shù)模式和原型模式。
1.創(chuàng)建對(duì)象// 組合使用構(gòu)造函數(shù)模式和原型模式 function Person(name, age, job){ this.name = name; this.age = age; this.job = job; this.friend = ["Jenny", "Court"]; } Person.prototype = { constructor: Person, //constructor指向Object構(gòu)造函數(shù),這里要將其constructor恢復(fù)為指向Person構(gòu)造函數(shù)。 Country: "China", showName: function(){ console.log("name = " + this.name); } } var p1 = new Person("Mike", 20, "student"); var p2 = new Person("Tom", 23, "Teacher"); console.log(p1); console.log(p2);
結(jié)果,每個(gè)實(shí)例都會(huì)有自己的一份實(shí)例屬性的副本,但同時(shí)又共享著對(duì)方法的引用,最大限度地節(jié)省了內(nèi)存。
另外,這種混合模式,還支持向構(gòu)造函數(shù)傳遞參數(shù)。
2.不同之處看上面的代碼,你會(huì)發(fā)現(xiàn)有個(gè)不同之處:Person.prototype的constructor屬性默認(rèn)是指向Object構(gòu)造函數(shù)。
從何而知?我們來測試一番。
// 組合使用構(gòu)造函數(shù)模式和原型模式 function Person(name, age, job){ this.name = name; this.age = age; this.job = job; this.friend = ["Jenny", "Court"]; } // 未使用原型模式前,Person構(gòu)造函數(shù)的原型對(duì)象的constructor指向Person構(gòu)造函數(shù)本身 console.log("Person.prototype.constructor === Person:"); console.log(Person.prototype.constructor === Person); console.log("-----分割線-----"); Person.prototype = { // constructor: Person, //一般要認(rèn)為設(shè)置,將其constructor恢復(fù)為指向Person構(gòu)造函數(shù),這里為了演示,就沒設(shè)置。 Country: "China", showName: function(){ console.log("name = " + this.name); } } // 使用原型模式,我們將Person.prototype設(shè)置為等于一個(gè)以對(duì)象字面量形式創(chuàng)建的新對(duì)象 // 因此,這里constructor屬性也就變成了新對(duì)象的constructor屬性,指向Object構(gòu)造函數(shù)。 // Person構(gòu)造函數(shù)的原型對(duì)象的constructor指向Object構(gòu)造函數(shù) console.log("Person.prototype ="); console.log(Person.prototype); console.log("-----分割線-----"); console.log("Person.prototype.constructor === Object:"); console.log(Person.prototype.constructor === Object); console.log("-----分割線-----"); console.log("Person.prototype.__proto__ === Object.prototype:"); console.log(Person.prototype.__proto__ === Object.prototype); var p1 = new Person("Mike", 20, "student"); var p2 = new Person("Tom", 23, "Teacher"); console.log(p1); console.log(p2);
未使用原型模式前,Person構(gòu)造函數(shù)的原型對(duì)象的constructor指向Person構(gòu)造函數(shù)本身。
使用原型模式,我們將Person.prototype設(shè)置為等于一個(gè)以對(duì)象字面量形式創(chuàng)建的新對(duì)象。
因此,這里constructor屬性也就變成了新對(duì)象的constructor屬性,指向Object構(gòu)造函數(shù)。
所以,Person構(gòu)造函數(shù)的原型對(duì)象的constructor指向Object構(gòu)造函數(shù)。
console.log("Person.prototype="); console.log(Person.prototype); console.log("-----分割線-----"); console.log("Person.prototype.constructor === Person:"); //true console.log(Person.prototype.constructor === Person); //true console.log("-----分割線-----"); console.log("Person.prototype.__proto__ === Object.prototype:"); //true console.log(Person.prototype.__proto__ === Object.prototype); //true console.log("-----分割線-----"); console.log("Person.__proto__="); console.log(Person.__proto__); console.log("Person.__proto__ === Function.prototype:"); console.log(Person.__proto__ === Function.prototype); //true console.log("-----分割線-----");4.觀察p1實(shí)例對(duì)象涉及到的原型鏈
console.log("p1.prototype="); console.log(p1.prototype); console.log("-----分割線-----"); console.log("p1.__proto__="); console.log(p1.__proto__); console.log("p1.__proto__ === Person.prototype:"); console.log(p1.__proto__ === Person.prototype); //true console.log("-----分割線-----"); console.log("p1.__proto__.constructor === Person:"); console.log(p1.__proto__.constructor === Person); console.log("-----分割線-----"); console.log("p1.__proto__.__proto__="); console.log(p1.__proto__.__proto__); console.log("p1.__proto__.__proto__ === Object.prototype:"); console.log(p1.__proto__.__proto__ === Object.prototype); //true console.log("-----分割線-----");5.觀察下p1.showName屬性引用的函數(shù)
console.log("p1.showName.prototype="); console.log(p1.showName.prototype); console.log("-----分割線-----"); console.log("p1.showName.prototype.constructor="); console.log(p1.showName.prototype.constructor); console.log("-----分割線-----"); console.log("p1.showName.prototype.__proto__="); console.log(p1.showName.prototype.__proto__); console.log("p1.showName.prototype.__proto__ === Object.prototype:"); console.log(p1.showName.prototype.__proto__ === Object.prototype); //true console.log("-----分割線-----"); console.log("p1.showName.__proto__="); console.log(p1.showName.__proto__); console.log("p1.showName.__proto__ === Function.prototype:"); console.log(p1.showName.__proto__ === Function.prototype); //true console.log("-----分割線-----");原型鏈圖
文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請(qǐng)注明本文地址:http://systransis.cn/yun/79022.html
摘要:對(duì)象是由構(gòu)造函數(shù)創(chuàng)建而成的,所以它的指向原型鏈圖對(duì)象的原型鏈圖對(duì)象屬性引用的匿名函數(shù)的原型鏈圖 Object模式 創(chuàng)建一個(gè)Object實(shí)例,再為其添加屬性和方法。 這是創(chuàng)建自定義對(duì)象最簡單的方式。 1.創(chuàng)建對(duì)象 // 創(chuàng)建person對(duì)象 var person = new Object(); person.name = Mike; person.age = 20; person.jo...
摘要:創(chuàng)建對(duì)象與工廠模式的區(qū)別沒有顯示地創(chuàng)建對(duì)象直接將方法和屬性付給了對(duì)象沒有語句構(gòu)造函數(shù)應(yīng)該始終以一個(gè)大寫字母開頭。創(chuàng)建構(gòu)造函數(shù)的實(shí)例,必須使用操作符。 構(gòu)造函數(shù)模式 ECMAScript中的構(gòu)造函數(shù)可用來創(chuàng)建特定類型的對(duì)象,像Object和Array這樣的原生構(gòu)造函數(shù)。也可以創(chuàng)建自定義的構(gòu)造函數(shù),從而定義自定義對(duì)象類型的屬性和方法。 1.創(chuàng)建對(duì)象 function Person(name...
摘要:原型模式定義構(gòu)造函數(shù),在構(gòu)造函數(shù)的原型對(duì)象中定義對(duì)象的屬性和方法,并通過構(gòu)造函數(shù)創(chuàng)建對(duì)象。,屬性存在于實(shí)例對(duì)象中,屬性不存在于實(shí)例對(duì)象中分割線操作符會(huì)在通過對(duì)象能夠訪問給定屬性時(shí)返回,無論該屬性是存在于實(shí)例中還是原型中。 原型模式 定義構(gòu)造函數(shù),在構(gòu)造函數(shù)的原型對(duì)象中定義對(duì)象的屬性和方法,并通過構(gòu)造函數(shù)創(chuàng)建對(duì)象。 1.創(chuàng)建對(duì)象 function Person(){}; Person....
摘要:而且在超類型的原型中定義的方法,對(duì)子類型而言也是不可見的,結(jié)果所有類型都只能使用構(gòu)造函數(shù)模式。在主要考慮對(duì)象而不是自定義類型和構(gòu)造函數(shù)的情況下,這個(gè)模式也不錯(cuò)。 寫在前面 注:這個(gè)系列是本人對(duì)js知識(shí)的一些梳理,其中不少內(nèi)容來自書籍:Javascript高級(jí)程序設(shè)計(jì)第三版和JavaScript權(quán)威指南第六版,感謝它們的作者和譯者。有發(fā)現(xiàn)什么問題的,歡迎留言指出。 1.原型鏈 將原型鏈作...
摘要:工廠模式用函數(shù)來封裝,以特定接口創(chuàng)建對(duì)象的細(xì)節(jié)。缺點(diǎn)不能知道對(duì)象識(shí)別的問題對(duì)象的類型不知道。復(fù)雜的工廠模式定義是將其成員對(duì)象的實(shí)列化推遲到子類中,子類可以重寫父類接口方法以便創(chuàng)建的時(shí)候指定自己的對(duì)象類型。 工廠模式 用函數(shù)來封裝,以特定接口創(chuàng)建對(duì)象的細(xì)節(jié)。 1.創(chuàng)建對(duì)象 function createPerson(name, age, job){ var o = new Obj...
閱讀 1438·2021-11-22 15:24
閱讀 2533·2021-10-11 11:06
閱讀 2339·2021-10-09 09:45
閱讀 2538·2021-09-09 09:33
閱讀 645·2019-08-30 15:53
閱讀 1449·2019-08-30 12:48
閱讀 689·2019-08-29 13:47
閱讀 512·2019-08-26 18:27