DataView.prototype.getUint8()

DataView 实例的 getUint8() 方法在该 DataView 的指定字节偏移处读取 1 个字节,并将其解释为 8 位无符号整数。

¥The getUint8() method of DataView instances reads 1 byte at the specified byte offset of this DataView and interprets it as an 8-bit unsigned integer.

Try it

语法

¥Syntax

js
getUint8(byteOffset)

参数

¥Parameters

byteOffset

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

返回值

¥Return value

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

¥An integer from 0 to 255, inclusive.

例外情况

¥Exceptions

RangeError

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

示例

¥Examples

使用 getUint8()

¥Using getUint8()

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

规范

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

¥Specifications

浏览器兼容性

BCD tables only load in the browser

¥Browser compatibility

也可以看看