• Node.js Video Tutorials

Node.js - Buffer.buf[index] 属性



在 NodeJS 中,buf[index] 中的 index 是缓冲区中的一个位置。它用于设置或返回缓冲区中 index 位置处的八位字节值。返回的值是单个字节,范围在 0x00 到 0xFF(十六进制)和 0 到 255(十进制)之间。

如果提供的 index 用于读取缓冲区中的值,且 index 为负数或大于缓冲区长度,则返回的值为 undefined。如果 index 为负数或大于缓冲区长度,它也不会更新缓冲区中的值。

语法

以下是 NodeJS Buffer buf[index] 属性的语法:

Buf[index] = value

示例

在本例中,我们将创建一个缓冲区并读取位置 5 处的值。

const buf = Buffer.from('Hello World');
console.log(buf);
console.log("The octet value at position 5 is :"+buf[5]);

输出

<Buffer 48 65 6c 6c 6f 20 57 6f 72 6c 64>
The octet value at position 5 is :32

示例

让我们使用大于 buffer.length 的 index。

const buf = Buffer.from('Hello World');
console.log(buf);
console.log("The octet value at position 15 is :"+buf[15]);

输出

<Buffer 48 65 6c 6c 6f 20 57 6f 72 6c 64>
The octet value at position 15 is :undefined

示例

在本例中,让我们更改所需位置处的八位字节值。

const buf = Buffer.from('Hello World');
buf[5] = 58;
console.log("The buffer after the octet value is changed at position 5 is :"+buf.toString());

输出

The buffer after the octet value is changed at position 5 is :Hello:World
nodejs_buffer_module.htm
广告