這篇文章給大家分享的是有關(guān)Javascript模擬實(shí)現(xiàn)new原理的示例分析的內(nèi)容。小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過(guò)來(lái)看看吧。
創(chuàng)新互聯(lián)主營(yíng)雞東網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營(yíng)網(wǎng)站建設(shè)方案,app軟件定制開(kāi)發(fā),雞東h5小程序定制開(kāi)發(fā)搭建,雞東網(wǎng)站營(yíng)銷推廣歡迎雞東等地區(qū)企業(yè)咨詢new是JS中的一個(gè)關(guān)鍵字,用來(lái)將構(gòu)造函數(shù)實(shí)例化的一個(gè)運(yùn)算符。例子:
function Animal(name) { this.name = name; } Animal.prototype.sayName = function() { console.log("I'm " + this.name); } var cat = new Animal('Tom'); console.log(cat.name); // Tom console.log(cat.__proto__ === Animal.prototype); // true cat.sayName(); // I'm Tom
從上面的例子可以得出兩點(diǎn)結(jié)論:
new操作符實(shí)例化了一個(gè)對(duì)象;
這個(gè)對(duì)象可以訪問(wèn)構(gòu)造函數(shù)的屬性;
這個(gè)對(duì)象可以訪問(wèn)構(gòu)造函數(shù)原型上的屬性;
對(duì)象的**__proto__**屬性指向了構(gòu)造函數(shù)的原型;
由于new是關(guān)鍵字,我們只能去聲明一個(gè)函數(shù)去實(shí)現(xiàn)new的功能,首先實(shí)現(xiàn)上面的三個(gè)特性,第一版代碼如下:
附:對(duì)原型原型鏈不熟悉的可以先看理解Javascript的原型和原型鏈。
// construct: 構(gòu)造函數(shù) function newFunction() { var res = {}; // 排除第一個(gè)構(gòu)造函數(shù)參數(shù) var construct = Array.prototype.shift.call(arguments); res.__proto__ = construct.prototype; // 使用apply執(zhí)行構(gòu)造函數(shù),將構(gòu)造函數(shù)的屬性掛載在res上面 construct.apply(res, arguments); return res; }
我們測(cè)試下:
function newFunction() { var res = {}; var construct = Array.prototype.shift.call(arguments); res.__proto__ = construct.prototype; construct.apply(res, arguments); return res; } function Animal(name) { this.name = name; } Animal.prototype.sayName = function() { console.log("I'm " + this.name); } var cat = newFunction(Animal, 'Tom'); console.log(cat.name); // Tom console.log(cat.__proto__ === Animal.prototype); // true cat.sayName(); // I'm Tom
一切正常。new的特性實(shí)現(xiàn)已經(jīng)80%,但new還有一個(gè)特性:
function Animal(name) { this.name = name; return { prop: 'test' }; } var cat = new Animal('Tom'); console.log(cat.prop); // test console.log(cat.name); // undefined console.log(cat.__proto__ === Object.prototype); // true console.log(cat.__proto__ === Animal.prototype); // false
如上,如果構(gòu)造函數(shù)return了一個(gè)對(duì)象,那么new操作后返回的是構(gòu)造函數(shù)return的對(duì)象。讓我們來(lái)實(shí)現(xiàn)下這個(gè)特性,最終版代碼如下:
// construct: 構(gòu)造函數(shù) function newFunction() { var res = {}; // 排除第一個(gè)構(gòu)造函數(shù)參數(shù) var construct = Array.prototype.shift.call(arguments); res.__proto__ = construct.prototype; // 使用apply執(zhí)行構(gòu)造函數(shù),將構(gòu)造函數(shù)的屬性掛載在res上面 var conRes = construct.apply(res, arguments); // 判斷返回類型 return conRes instanceof Object ? conRes : res; }
測(cè)試下:
function Animal(name) { this.name = name; return { prop: 'test' }; } var cat = newFunction(Animal, 'Tom'); console.log(cat.prop); // test console.log(cat.name); // undefined console.log(cat.__proto__ === Object.prototype); // true console.log(cat.__proto__ === Animal.prototype); // false
以上代碼就是我們最終對(duì)new操作符的模擬實(shí)現(xiàn)。我們?cè)賮?lái)看下官方對(duì)new的解釋
引用MDN對(duì)new運(yùn)算符的定義:
new 運(yùn)算符創(chuàng)建一個(gè)用戶定義的對(duì)象類型的實(shí)例或具有構(gòu)造函數(shù)的內(nèi)置對(duì)象的實(shí)例。
new操作符會(huì)干下面這些事:
創(chuàng)建一個(gè)空的簡(jiǎn)單JavaScript對(duì)象(即{});
鏈接該對(duì)象(即設(shè)置該對(duì)象的構(gòu)造函數(shù))到另一個(gè)對(duì)象 ;
將步驟1新創(chuàng)建的對(duì)象作為this的上下文 ;
如果該函數(shù)沒(méi)有返回對(duì)象,則返回this。
4條都已經(jīng)實(shí)現(xiàn)。還有一個(gè)更好的實(shí)現(xiàn),就是通過(guò)Object.create去創(chuàng)建一個(gè)空的對(duì)象:
// construct: 構(gòu)造函數(shù) function newFunction() { // 通過(guò)Object.create創(chuàng)建一個(gè)空對(duì)象; var res = Object.create(null); // 排除第一個(gè)構(gòu)造函數(shù)參數(shù) var construct = Array.prototype.shift.call(arguments); res.__proto__ = construct.prototype; // 使用apply執(zhí)行構(gòu)造函數(shù),將構(gòu)造函數(shù)的屬性掛載在res上面 var conRes = construct.apply(res, arguments); // 判斷返回類型 return conRes instanceof Object ? conRes : res; }
1、能夠嵌入動(dòng)態(tài)文本于HTML頁(yè)面。2、對(duì)瀏覽器事件做出響應(yīng)。3、讀寫(xiě)HTML元素。4、在數(shù)據(jù)被提交到服務(wù)器之前驗(yàn)證數(shù)據(jù)。5、檢測(cè)訪客的瀏覽器信息。6、控制cookies,包括創(chuàng)建和修改等。7、基于Node.js技術(shù)進(jìn)行服務(wù)器端編程。
感謝各位的閱讀!關(guān)于“Javascript模擬實(shí)現(xiàn)new原理的示例分析”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無(wú)理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場(chǎng)景需求。
文章標(biāo)題:Javascript模擬實(shí)現(xiàn)new原理的示例分析-創(chuàng)新互聯(lián)
標(biāo)題來(lái)源:http://aaarwkj.com/article22/hogcc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)頁(yè)設(shè)計(jì)公司、網(wǎng)站制作、品牌網(wǎng)站建設(shè)、外貿(mào)網(wǎng)站建設(shè)、面包屑導(dǎo)航、網(wǎng)站設(shè)計(jì)公司
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容