DataView.prototype.getUint32()

DataView 实例的 getUint32() 方法从该 DataView 的指定字节偏移量开始读取 4 个字节,并将它们解释为 32 位无符号整数。没有对齐约束;多字节值可以从边界内的任何偏移量获取。

¥The getUint32() method of DataView instances reads 4 bytes starting at the specified byte offset of this DataView and interprets them as a 32-bit unsigned integer. There is no alignment constraint; multi-byte values may be fetched from any offset within bounds.

Try it

语法

¥Syntax

js
getUint32(byteOffset)
getUint32(byteOffset, littleEndian)

参数

¥Parameters

byteOffset

从读取数据的视图开始的偏移量(以字节为单位)。

littleEndian Optional

表示数据是否以 小端或大端 格式存储。如果是 falseundefined,则读取大端值。

返回值

¥Return value

0 到 4294967295 之间的整数(含 0 和 4294967295)。

¥An integer from 0 to 4294967295, inclusive.

例外情况

¥Exceptions

RangeError

如果 byteOffset 设置为读取超出视图末尾,则抛出该异常。

示例

¥Examples

使用 getUint32()

¥Using getUint32()

js
const { buffer } = new Uint8Array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9]);
const dataview = new DataView(buffer);
console.log(dataview.getUint32(1)); // 16909060

规范

Specification
ECMAScript Language Specification
# sec-dataview.prototype.getuint32

¥Specifications

浏览器兼容性

BCD tables only load in the browser

¥Browser compatibility

也可以看看