DataView.prototype.getInt8()

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

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

Try it

语法

¥Syntax

js
getInt8(byteOffset)

参数

¥Parameters

byteOffset

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

返回值

¥Return value

-128 到 127 之间的整数(包含 -128 和 127)。

¥An integer from -128 to 127, inclusive.

例外情况

¥Exceptions

RangeError

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

示例

¥Examples

使用 getInt8()

¥Using getInt8()

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

规范

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

¥Specifications

浏览器兼容性

BCD tables only load in the browser

¥Browser compatibility

也可以看看