真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網站制作重慶分公司

Javascript模擬實現(xiàn)new原理的示例分析-創(chuàng)新互聯(lián)

這篇文章給大家分享的是有關Javascript模擬實現(xiàn)new原理的示例分析的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

創(chuàng)新互聯(lián)主營雞東網站建設的網絡公司,主營網站建設方案,app軟件定制開發(fā),雞東h5小程序定制開發(fā)搭建,雞東網站營銷推廣歡迎雞東等地區(qū)企業(yè)咨詢

new是JS中的一個關鍵字,用來將構造函數(shù)實例化的一個運算符。例子:

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

從上面的例子可以得出兩點結論:

  • new操作符實例化了一個對象;

  • 這個對象可以訪問構造函數(shù)的屬性;

  • 這個對象可以訪問構造函數(shù)原型上的屬性;

  • 對象的**__proto__**屬性指向了構造函數(shù)的原型;

由于new是關鍵字,我們只能去聲明一個函數(shù)去實現(xiàn)new的功能,首先實現(xiàn)上面的三個特性,第一版代碼如下:

附:對原型原型鏈不熟悉的可以先看理解Javascript的原型和原型鏈。

// construct: 構造函數(shù)
function newFunction() {
 var res = {};
 // 排除第一個構造函數(shù)參數(shù)
 var construct = Array.prototype.shift.call(arguments);
 res.__proto__ = construct.prototype;
 // 使用apply執(zhí)行構造函數(shù),將構造函數(shù)的屬性掛載在res上面
 construct.apply(res, arguments);
 return res;
}

我們測試下:

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的特性實現(xiàn)已經80%,但new還有一個特性:

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

如上,如果構造函數(shù)return了一個對象,那么new操作后返回的是構造函數(shù)return的對象。讓我們來實現(xiàn)下這個特性,最終版代碼如下:

// construct: 構造函數(shù)
function newFunction() {
 var res = {};
 // 排除第一個構造函數(shù)參數(shù)
 var construct = Array.prototype.shift.call(arguments);
 res.__proto__ = construct.prototype;
 // 使用apply執(zhí)行構造函數(shù),將構造函數(shù)的屬性掛載在res上面
 var conRes = construct.apply(res, arguments);
 // 判斷返回類型
 return conRes instanceof Object ? conRes : res;
}

測試下:

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

以上代碼就是我們最終對new操作符的模擬實現(xiàn)。我們再來看下官方對new的解釋

引用MDN對new運算符的定義:

new 運算符創(chuàng)建一個用戶定義的對象類型的實例或具有構造函數(shù)的內置對象的實例。

new操作符會干下面這些事:

  • 創(chuàng)建一個空的簡單JavaScript對象(即{});

  • 鏈接該對象(即設置該對象的構造函數(shù))到另一個對象 ;

  • 將步驟1新創(chuàng)建的對象作為this的上下文 ;

  • 如果該函數(shù)沒有返回對象,則返回this。

4條都已經實現(xiàn)。還有一個更好的實現(xiàn),就是通過Object.create去創(chuàng)建一個空的對象:

// construct: 構造函數(shù)
function newFunction() {
 // 通過Object.create創(chuàng)建一個空對象;
 var res = Object.create(null);
 // 排除第一個構造函數(shù)參數(shù)
 var construct = Array.prototype.shift.call(arguments);
 res.__proto__ = construct.prototype;
 // 使用apply執(zhí)行構造函數(shù),將構造函數(shù)的屬性掛載在res上面
 var conRes = construct.apply(res, arguments);
 // 判斷返回類型
 return conRes instanceof Object ? conRes : res;
}

JavaScript的作用是什么

1、能夠嵌入動態(tài)文本于HTML頁面。2、對瀏覽器事件做出響應。3、讀寫HTML元素。4、在數(shù)據被提交到服務器之前驗證數(shù)據。5、檢測訪客的瀏覽器信息。6、控制cookies,包括創(chuàng)建和修改等。7、基于Node.js技術進行服務器端編程。

感謝各位的閱讀!關于“Javascript模擬實現(xiàn)new原理的示例分析”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

另外有需要云服務器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。


新聞標題:Javascript模擬實現(xiàn)new原理的示例分析-創(chuàng)新互聯(lián)
分享路徑:http://weahome.cn/article/hogcc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部