语法
js
new BigInt64Array()
new BigInt64Array(length)
new BigInt64Array(typedArray)
new BigInt64Array(object)
new BigInt64Array(buffer)
new BigInt64Array(buffer, byteOffset)
new BigInt64Array(buffer, byteOffset, length)
参数
参见 TypedArray。
异常
参见 TypedArray。
示例
>创建 BigInt64Array 的不同方式
js
// 通过长度创建
const bigint64 = new BigInt64Array(2);
bigint64[0] = 42n;
console.log(bigint64[0]); // 42n
console.log(bigint64.length); // 2
console.log(bigint64.BYTES_PER_ELEMENT); // 8
// 通过数组创建
const x = new BigInt64Array([21n, 31n]);
console.log(x[1]); // 31n
// 通过另一个 TypedArray 创建
const y = new BigInt64Array(x);
console.log(y[0]); // 21n
// 通过 ArrayBuffer 创建
const buffer = new ArrayBuffer(64);
const z = new BigInt64Array(buffer, 8, 4);
console.log(z.byteOffset); // 8
// 通过可迭代对象创建
const iterable = (function* () {
yield* [1n, 2n, 3n];
})();
const bigint64FromIterable = new BigInt64Array(iterable);
console.log(bigint64FromIterable);
// BigInt64Array [1n, 2n, 3n]
规范
| 规范 |
|---|
| ECMAScript® 2027 Language Specification> # sec-typedarray-constructors> |