Uint8Array
基线 广泛可用
此功能已得到很好的建立,并且可在许多设备和浏览器版本上运行。它自 2015 年 7 月.
报告反馈
Uint8Array
类型化数组表示一个 8 位无符号整数数组。内容初始化为 0
,除非显式提供初始化数据。建立后,您可以使用对象的 方法或使用标准数组索引语法(即,使用方括号表示法)引用数组中的元素。
构造函数
静态属性
创建一个新的 Uint8Array
对象。.
还从其父级
TypedArray
继承静态属性-
Uint8Array.BYTES_PER_ELEMENT
静态方法
返回元素大小的数值。对于 Uint8Array
,值为 1
。.
实例属性
从其父级 TypedArray
继承静态方法.
还从其父级 TypedArray
继承实例属性
这些属性在
Uint8Array.prototype
上定义,并由所有Uint8Array
实例共享。-
Uint8Array.prototype.BYTES_PER_ELEMENT
返回元素大小的数值。对于
Uint8Array
,值为1
。-
Uint8Array.prototype.constructor
实例方法
创建实例对象的构造函数。对于 Uint8Array
实例,初始值为 Uint8Array
构造函数。.
示例
从其父级 TypedArray
继承实例方法
创建 Uint8Array 的不同方法
// From a length
const uint8 = new Uint8Array(2);
uint8[0] = 42;
console.log(uint8[0]); // 42
console.log(uint8.length); // 2
console.log(uint8.BYTES_PER_ELEMENT); // 1
// From an array
const x = new Uint8Array([21, 31]);
console.log(x[1]); // 31
// From another TypedArray
const y = new Uint8Array(x);
console.log(y[0]); // 21
// From an ArrayBuffer
const buffer = new ArrayBuffer(8);
const z = new Uint8Array(buffer, 1, 4);
console.log(z.byteOffset); // 1
// From an iterable
const iterable = (function* () {
yield* [1, 2, 3];
})();
const uint8FromIterable = new Uint8Array(iterable);
console.log(uint8FromIterable);
// Uint8Array [1, 2, 3]
规范
js |
---|
规范 # ECMAScript 语言规范 |
浏览器兼容性
table-49