概述
Uint8Array 数组类型表示一个8位无符号整型数组,创建时内容被初始化为0。创建完后,可以以对象的方式或使用数组下标索引的方式引用数组中的元素。
语法格式
Uint8Array(length);//创建初始化为0的,包含length个元素的无符号整型数组 Uint8Array(typedArray); Uint8Array(object); Uint8Array(buffer [, byteOffset [, length]]);
构造语法和参数的更多信息请参见 TypedArray.
属性
Uint8Array.BYTES_PER_ELEMENT- 返回数组中元素的字节数,Uint8Array中返回1字节。
- Uint8Array.length
- 数组的长度
Uint8Array.name- 返回构造名的字符串,对Uint8Array类型而言返回 “Uint8Array”
Uint8Array.prototype- TypedArray 对象的原型.
方法
Uint8Array.from()- 从一个数组或可迭代的对象创建一个新的Uint8Array数组,可参见
Array.from(). Uint8Array.of()- 通过一个可变数目的参数创建一个新的
Uint8Array数组,可参见Array.of().
Uint8Array 原型声明
所有的Uint8Array对象继承自 %TypedArray%.prototype.
属性
Uint8Array.prototype.constructor- 返回创建实例属性的函数,默认为
Uint8Array构造器。 Uint8Array.prototype.buffer只读- 返回由
Uint8Array引用的ArrayBuffer,在构造时期固定,所以是只读的。 Uint8Array.prototype.byteLength只读- 返回
Uint8Array长度(字节数)。在构造时期固定,所以是 只读的。 Uint8Array.prototype.byteOffset只读- 返回
Uint8Array距离其ArrayBuffer起始位置的偏移(字节数)。在构造时期固定,所以是 只读的。 Uint8Array.prototype.length只读- 返回保存在
Uint8Array中的元素数量。 在构造时期固定,所以是 只读的。
方法
Uint8Array.prototype.copyWithin()- 复制数组中的元素序列,请参见
Array.prototype.copyWithin()。 Uint8Array.prototype.entries()- 返回新的
Array Iterator对象,含有数组中每个下标处的键值对。请参见Array.prototype.entries(). Uint8Array.prototype.every()- 测试数组中所有元素是否都能通过由函数提供的测试。请参见
Array.prototype.every()。 Uint8Array.prototype.fill()- 使用静态值填充从起始下标到终止下标的数组元素。请参见
Array.prototype.fill()。 Uint8Array.prototype.filter()- 创建新的数组,含有数组中给定过滤器返回 true 的所有元素。请参见
Array.prototype.filter(). Uint8Array.prototype.find()- 如果数组中的元素满足提供的测试函数,返回找到的值,如果没有找到则返回
undefined。请参见Array.prototype.find()。 Uint8Array.prototype.findIndex()- 如果数组中的元素满足提供的测试函数,返回找到的下标,如果没有找到则返回 -1。请参见
Array.prototype.findIndex(). Uint8Array.prototype.forEach()- 对数组的每个元素调用字符串
Array.prototype.forEach()。 Uint8Array.prototype.includes()- 判断类型化数组是否包含特定值,如果包含返回
true,否则返回false。另见Array.prototype.includes()。 Uint8Array.prototype.indexOf()- 返回数组中等于特定值的第一个元素(下标最小),如果没有找到则返回 -1,请参见
Array.prototype.indexOf(). Uint8Array.prototype.join()- 将数组中所有元素连接为字符串。请参见
Array.prototype.join()。 Uint8Array.prototype.keys()- 返回新的
Array Iterator,含有数组中每个下标的键,请参见Array.prototype.keys()。 Uint8Array.prototype.lastIndexOf()- 返回数组中等于特定值的最后一个元素(下标最大),如果没有找到则返回 -1,请参见
Array.prototype.lastIndexOf()。 Uint8Array.prototype.map()- 使用在该数组的每个元素上调用函数的结果创建新数组,请参见
Array.prototype.map()。 Uint8Array.prototype.move()未实现Uint8Array.prototype.copyWithin()的之前的非标准版本。Uint8Array.prototype.reduce()- 对累加器和数组的每个值应用函数(从左到右),使其归约为单一的值, 另见
Array.prototype.reduce()。 Uint8Array.prototype.reduceRight()- 对累加器和数组的每个值应用函数(从右到左),使其归约为单一的值, 另见
Array.prototype.reduceRight()。 Uint8Array.prototype.reverse()- 翻转数组中的元素顺序 — 第一个变为最后,最后变为第一个。另见
Array.prototype.reverse()。 Uint8Array.prototype.set()- 在类型化数组中储存多个值,从特定数组中读取输入。
Uint8Array.prototype.slice()- 提取数组的某个部分并返回新的数组,请参见
Array.prototype.slice()。 Uint8Array.prototype.some()- 如果数组中至少一个元素满足给定的测试函数,则返回
true。请参见Array.prototype.some()。 Uint8Array.prototype.sort()- 原地排序数组中的元素,并返回该数组,请参见
Array.prototype.sort()。 Uint8Array.prototype.subarray()从给定的元素起始和终止下标返回新的 Uint8Array。Uint8Array.prototype.values()- 返回新的
Array Iterator对象,含有数组每个下标处的值,请参见Array.prototype.values()。 Uint8Array.prototype.toLocaleString()- 返回表示数组及其元素的本地化字符串,请参见
Array.prototype.toLocaleString()。 Uint8Array.prototype.toString()- 返回表示数组及其元素的字符串。请参见
Array.prototype.toString()。 Uint8Array.prototype[@@iterator]()返回新的 Array Iterator对象,包含数组中每个下标处的值。
例子
// 来自长度 var uint8 = new Uint8Array(2); uint8[0] = 42; console.log(uint8[0]); // 42 console.log(uint8.length); // 2 console.log(uint8.BYTES_PER_ELEMENT); // 1 // 来自数组 var arr = new Uint8Array([21,31]); console.log(arr[1]); // 31 // 来自另一个 TypedArray var x = new Uint8Array([21, 31]); var y = new Uint8Array(x); console.log(y[0]); // 21 // 来自 ArrayBuffer var buffer = new ArrayBuffer(8); var z = new Uint8Array(buffer, 1, 4);
规范
| Specification | Status | Comment |
|---|---|---|
| 类型化数组规范 | Obsolete | 由 ECMAScript 6 取代。 |
| ECMAScript 2015 (6th Edition, ECMA-262) TypedArray constructors |
Standard | ECMA 标准中的初始定义。 |
浏览器兼容性
| Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
|---|---|---|---|---|---|
| Basic support | 7.0 | 4.0 (2) | 10 | 11.6 | 5.1 |
| Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
|---|---|---|---|---|---|---|
| Basic support | 4.0 | (Yes) | 4.0 (2) | 10 | 11.6 | 4.2 |