该 Int32Array 类型表示在平台顺序字节中一个双补码 32 位有符号的整型数组。如果需要控制字节顺序,请改用 DataView。此内容的初始化为 0。一旦创建,你可以使用对象的方法或者标准数组索引的语法 (即使用括号表示法)。
语法
new Int32Array(length);
new Int32Array(typedArray);
new Int32Array(object);
new Int32Array(buffer [, byteOffset [, length]]);
更多关于构造函数语法和参数的详细信息,请参阅TypedArray。
静态属性
- {{jsxref("TypedArray.BYTES_PER_ELEMENT", "Int32Array.BYTES_PER_ELEMENT")}}
- : Returns a number value of the element size.
4in the case of anInt32Array.
- : Returns a number value of the element size.
- Int32Array.length
- : Static length property whose value is 3. For the actual length (number of elements), see {{jsxref("TypedArray.prototype.length", "Int32Array.prototype.length")}}.
- {{jsxref("TypedArray", "Int32Array.prototype")}}
- : Prototype for the TypedArray objects.
静态方法
- {{jsxref("TypedArray.from", "Int32Array.from()")}}
- : 从类似数组或者可迭代对象中创建一个新的
Int32Array。另见Array.from().
- : 从类似数组或者可迭代对象中创建一个新的
- {{jsxref("TypedArray.of", "Int32Array.of()")}}
- : 创建一个新的具有可变数量参数的
Int32Array。另见Array.of()。
- : 创建一个新的具有可变数量参数的
实例属性
还从其父接口 TypedArray 继承实例属性。
Int32Array.prototype.constructor- : 返回创建实例原型的函数。默认情况下,它是
Int32Array的构造函数。
- : 返回创建实例原型的函数。默认情况下,它是
- {{jsxref("TypedArray.prototype.buffer", "Int32Array.prototype.buffer")}} {{readonlyInline}}
- : 返回在构造时被固定的
Int32Array引用的ArrayBuffer,因此只读。
- : 返回在构造时被固定的
- {{jsxref("TypedArray.prototype.byteLength", "Int32Array.prototype.byteLength")}} {{readonlyInline}}
- : 返回从其
ArrayBuffer开始的Int32Array长度的 (以字节为单位)。在构造时被固定,因此只读。
- : 返回从其
- {{jsxref("TypedArray.prototype.byteOffset", "Int32Array.prototype.byteOffset")}} {{readonlyInline}}
- : 返回从其
ArrayBuffer开始的偏移量 (以字节为单位)。在构造时被固定,因此只读。
- : 返回从其
- {{jsxref("TypedArray.prototype.length", "Int32Array.prototype.length")}} {{readonlyInline}}
- : 返回
Int32ArrayInt32Array包含的元素个数。在构造时被固定,因此只读。
- : 返回
实例方法
从其父接口 TypedArray 继承实例方法。
示例
不同的方式创建一个 Int32Array
// 从一个数字
var int32 = new Int32Array(2);
int32[0] = 42;
console.log(int32[0]); // 42
console.log(int32.length); // 2
console.log(int32.BYTES_PER_ELEMENT); // 4
// 从一个数组
var arr = new Int32Array([21, 31]);
console.log(arr[1]); // 31
// 从一个其他 TypedArray
var x = new Int32Array([21, 31]);
var y = new Int32Array(x);
console.log(y[0]); // 21
// 从一个 ArrayBuffer
var buffer = new ArrayBuffer(16);
var z = new Int32Array(buffer, 0, 4);