javascript Array.prototype.slice使用說明

來源:互聯網
上載者:User

除了正常用法,slice 經常用來將 array-like 對象轉換為 true array.

名詞解釋:array-like object – 擁有 length 屬性的對象,比如 { 0: ‘foo', length: 1 }, 甚至 { length: ‘bar' }. 最常見的 array-like 對象是 arguments 和 NodeList.

查看 V8 引擎 array.js 的源碼,可以將 slice 的內部實現簡化為:

複製代碼 代碼如下:function slice(start, end) {
var len = ToUint32(this.length), result = [];
for(var i = start; i < end; i++) {
result.push(this[i]);
}
return result;
}

可以看出,slice 並不需要 this 為 array 類型,只需要有 length 屬性即可。並且 length 屬性可以不為 number 類型,當不能轉換為數值時,ToUnit32(this.length) 返回 0.

對於標準瀏覽器,上面已經將 slice 的原理解釋清楚了。但是惱人的 ie, 總是給我們添亂子: 複製代碼 代碼如下:var slice = Array.prototype.slice;
slice.call(); // => IE: Object expected.
slice.call(document.childNodes); // => IE: JScript object expected.

以上代碼,在 ie 裡報錯。可恨 IE 的 Trident 引擎不開源,那我們只有猜測了: 複製代碼 代碼如下:function ie_slice(start, end) {
var len = ToUint32(this.length), result = [];

if(__typeof__ this !== 'JScript Object') throw 'JScript object expected';
if(this === null) throw 'Oject expected';

for(var i = start; i < end; i++) {
result.push(this[i]);
}
return result;
}

至此,把猥瑣的 ie 自圓其說完畢。

關於 slice, 還有一個話題:用 Array.prototype.slice 還是 [].slice ? 從理論上講,[] 需要建立一個數組,效能上會比 Array.prototype 稍差。但實際上,這兩者差不多,就如迴圈裡用 i++ 還是 ++i 一樣,純屬個人習慣。

最後一個話題,有關效能。對於數組的篩選來說,有一個犧牲色相的寫法: 複製代碼 代碼如下:var ret = [];
for(var i = start, j = 0; i < end; i++) {
ret[j++] = arr[i];
}

用空間換時間。去掉 push, 對於大數組來說,效能提升還是比較明顯的。

一大早寫博,心情不是很好,得留個題目給大家: 複製代碼 代碼如下:var slice = Array.prototype.slice;
alert(slice.call({0: 'foo', length: 'bar'})[0]); // ?
alert(slice.call(NaN).length); // ?
alert(slice.call({0: 'foo', length: '100'})[0]); // ?

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.