W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
穩(wěn)定性: 1 - 試驗
表示能夠通過簡單的內(nèi)存分配器(處理擴展原始內(nèi)存的分配)支持的緩存,可供Smalloc使用的函數(shù)如下所示:
length
{Number} <= smalloc.kMaxLength
receiver
{Object} 默認: new Object
type
{Enum} 默認: Uint8
此函數(shù)的作用為返回包含分配的外部數(shù)組數(shù)據(jù)的receiver
對象。如果沒有傳入receiver
,則將會創(chuàng)建并返回一個新的對象。
這可以用來創(chuàng)建你自己的類似buffer的類。不會設(shè)置其他屬性,因此使用者需要跟蹤其他所需信息(比如分配的長度)。
function SimpleData(n) {
this.length = n;
smalloc.alloc(this.length, this);
}
SimpleData.prototype = { /* ... */ };
僅檢查receiver
是否是非數(shù)組的對象。因此,可以分配擴展數(shù)據(jù)數(shù)據(jù),不僅是普通對象。
function allocMe() { }
smalloc.alloc(3, allocMe);
// { [Function allocMe] '0': 0, '1': 0, '2': 0 }
v8不支持給數(shù)組分配擴展數(shù)組對象,如果這么做,將會拋出。
你可以指定外部數(shù)組數(shù)據(jù)的類型,在smalloc.Types
列出了可供使用的外部數(shù)組數(shù)據(jù)的類型,例如:
var doubleArr = smalloc.alloc(3, smalloc.Types.Double);
for (var i = 0; i < 3; i++)
doubleArr = i / 10;
// { '0': 0, '1': 0.1, '2': 0.2 }
使用Object.freeze
,Object.seal
和Object.preventExtensions
不能凍結(jié)、封鎖、阻止對象的使用擴展數(shù)據(jù)擴展。
source
{Object} 分配了外部數(shù)組的對象sourceStart
{Number} 負責的起始位置dest
{Object} 分配了外部數(shù)組的對象destStart
{Number} 拷貝到目標的起始位置copyLength
{Number} 需要拷貝的長度將內(nèi)存從一個外部數(shù)組分配復制到另一個數(shù)組中,任何參數(shù)都是可選的,否則會拋出異常。
var a = smalloc.alloc(4);
var b = smalloc.alloc(4);
for (var i = 0; i < 4; i++) {
a[i] = i;
b[i] = i * 2;
}
// { '0': 0, '1': 1, '2': 2, '3': 3 }
// { '0': 0, '1': 2, '2': 4, '3': 6 }
smalloc.copyOnto(b, 2, a, 0, 2);
// { '0': 4, '1': 6, '2': 2, '3': 3 }
copyOnto
將自動檢測內(nèi)部分配的長度,因此不需要設(shè)置任何附加參數(shù)。
obj
Object釋放通過smalloc.alloc
給對象分配的內(nèi)存。
var a = {};
smalloc.alloc(3, a);
// { '0': 0, '1': 0, '2': 0 }
smalloc.dispose(a);
// {}
這對于減輕垃圾回收器的負擔是有效的,但是在開發(fā)的時候還是要小心,程序里可能會出現(xiàn)難以跟蹤的錯誤。
var a = smalloc.alloc(4);
var b = smalloc.alloc(4);
// perform this somewhere along the line
smalloc.dispose(b);
// now trying to copy some data out
smalloc.copyOnto(b, 2, a, 0, 2);
// now results in:
// RangeError: copy_length > source_length
調(diào)用dispose()
,對象依舊擁有外部數(shù)據(jù),例如smalloc.hasExternalData()
會返回true
。dispose()
不支持緩存,如果傳入將會拋出。
obj
{Object}如果obj
擁有外部分配的內(nèi)存,返回true
。
可分配的最大數(shù)量。則同樣適用于緩沖區(qū)的創(chuàng)建。
外部數(shù)組的類型,包含:
Int8
Uint8
Int16
Uint16
Int32
Uint32
Float
Double
Uint8Clamped
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: