BigInt64Array - JavaScript 编辑
BigInt64Array
类型的数组代表由64位有符号整数组成的数组。如果需要控制字节顺序的话,请使用 DataView
代替。内容初始化为 0n
。一旦建立,就可以使用对象的方法或使用标准数组索引语法(即使用中括号表示法)引用数组中的元素。
构造函数
添加一个新的BigInt64Array
对象。
静态属性
返回一个元素大小的数字值,BigInt64Array
返回 8
返回构造函数名字的字符串值,如果是BigInt64Array
的话,就是"BigInt64Array".
实例属性
BigInt64Array.prototype.buffer
- 返回被
BigInt64Array
引用的ArrayBuffer
。这在BigInt64Array对象构建时期就被锁定了,所以是只读的。 BigInt64Array.prototype.byteLength
- 返回
BigInt64Array
从{jsxref(“ArrayBuffer”)}}开始的长度(以字节为单位)。这在构造时已经被固定,因此是只读的。 BigInt64Array.prototype.byteOffset
- 返回
BigInt64Array
从{jsxref(“ArrayBuffer”)}}开始的偏移量(以字节为单位)。这在构造时已被固定的,因此是只读。 BigInt64Array.prototype.length
-
返回
BigInt64Array
中被 保留的元 素个数。这 在构造时是固定的,因此是只读 。
实例方法
BigInt64Array.prototype.copyWithin()
- 复制数组中的数组元素序列。另请参见{jsxref(“Array.prototype.copyWithin()")}}.
BigInt64Array.prototype.entries()
- 返回一个新的数组迭代器对象,该对象包含数组中每个索引的键/值对。另请参见{jsxref(“Array.prototype.entries()")}}.
BigInt64Array.prototype.every()
- 测试数组中的所有元素是否通过函数提供的测试。另请参见{jsxref(“Array.prototype.every()")}}.
BigInt64Array.prototype.fill()
- 用静态值填充从起始索引到结束索引的数组的所有元素。另请参见{jsxref(“Array.prototype.fill()")}}
BigInt64Array.prototype.filter()
- 使用提供的筛选函数为其返回true的数组的所有元素创建一个新数组。另请参见{jsxref(“Array.prototype.filter()")}}
BigInt64Array.prototype.find()
- 如果数组中的元素满足提供的测试函数,则返回数组中找到的值;如果未找到,则返回
undefined
。另请参见{jsxref(“Array.prototype.find()")}}. BigInt64Array.prototype.findIndex()
- 如果数组中的元素满足提供的测试函数,则返回数组中找到的索引;如果未找到,则返回-1。另请参见{jsxref(“Array.prototype.findIndex()")}}.
BigInt64Array.prototype.forEach()
- 为数组中的每个元素调用函数。另请参见{jsxref(“Array.prototype.forEach()")}}
BigInt64Array.prototype.includes()
- 确定类型化数组是否包含某个元素,并根据需要返回
true
或false
。另请参见{jsxref(“Array.prototype.includes()")}}. BigInt64Array.prototype.indexOf()
- 返回数组中元素的第一个(最小)索引,等于指定值;如果找不到,则返回-1。另请参见{jsxref(“Array.prototype.indexOf()")}}
BigInt64Array.prototype.join()
- 将数组的所有元素联接为字符串。另请参见{jsxref(“Array.prototype.join()")}}
BigInt64Array.prototype.keys()
- 返回一个新的
Array Iterator
,它包含数组中每个索引的键。另请参见{jsxref(“Array.prototype.keys()")}}. BigInt64Array.prototype.lastIndexOf()
- 返回数组中元素的最后一个(最大)索引,等于指定值;如果找不到,则返回-1。另请参见{jsxref(“Array.prototype.lastIndexOf()")}}.
BigInt64Array.prototype.map()
- 创建一个新数组,其中包含对此数组中的每个元素调用所提供函数的结果。另请参见{jsxref(“Array.prototype.map()")}}.
BigInt64Array.prototype.reduce()
- 对累加器和数组的每个值(从左到右)应用一个函数,以便将其减少为单个值。另请参见{jsxref(“Array.prototype.reduce()")}}.
BigInt64Array.prototype.reduceRight()
- 对累加器和数组的每个值(从右到左)应用一个函数,以便将其减少为单个值。另请参见{jsxref(“Array.prototype.reduceRight()")}}.
BigInt64Array.prototype.reverse()
- 反转数组元素的顺序-第一个变为最后一个,最后一个变为第一个。另请参见{jsxref(“Array.prototype.reverse()")}}.
BigInt64Array.prototype.set()
- 在 typed array 中存储多个值,从指定数组读取输入值。
BigInt64Array.prototype.slice()
- 提取数组的一部分并返回一个新数组。另请参见{jsxref(“Array.prototype.slice()")}}.
BigInt64Array.prototype.some()
- 如果此数组中至少有一个元素满足提供的测试函数,则返回true。另请参见{jsxref(“Array.prototype.some()")}}.
BigInt64Array.prototype.sort()
- 对数组的元素进行就地排序并返回数组。另请参见{jsxref(“Array.prototype.sort()")}}.
BigInt64Array.prototype.subarray()
- 从给定的起始和结束元素索引返回一个新的
BigUint64Array
。 BigInt64Array.prototype.values()
- 返回一个新的
Array Iterator
对象,该对象包含数组中每个索引的值。另请参见{jsxref(“Array.prototype.values()")}}. BigInt64Array.prototype.toLocaleString()
- 返回表示数组及其元素的本地化字符串。另请参见{jsxref(“Array.prototype.toLocaleString()")}}.
BigInt64Array.prototype.toString()
- 返回表示数组及其元素的字符串。另请参见{jsxref(“Array.prototype.toString()")}}.
BigInt64Array.prototype[@@iterator]()
- 返回一个新的
Array Iterator
对象,该对象包含数组中每个索引的值。
例子
不同的方法去创建一个 BigInt64Array
// From a length
var bigint64 = new BigInt64Array(2);
bigint64[0] = 42n;
console.log(bigint64[0]); // 42n
console.log(bigint64.length); // 2
console.log(bigint64.BYTES_PER_ELEMENT); // 8
// From an array
var arr = new BigInt64Array([21n,31n]);
console.log(arr[1]); // 31n
// From another TypedArray
var x = new BigInt64Array([21n, 31n]);
var y = new BigInt64Array(x);
console.log(y[0]); // 21n
// From an ArrayBuffer
var buffer = new ArrayBuffer(32);
var z = new BigInt64Array(buffer, 0, 4);
// From an iterable
var iterable = function*(){ yield* [1n, 2n, 3n]; }();
var bigint64 = new BigInt64Array(iterable);
// BigInt64Array[1n, 2n, 3n]
规格
Specification |
---|
浏览器兼容性
BCD tables only load in the browser
此页上的兼容性表是从结构化数据生成的。如果你想对数据有所贡献,请查看https://github.com/mdn/browser-compat-data并向我们发送请求。参考
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论