📜  Node.js Buffer.readUInt8() 方法

📅  最后修改于: 2022-05-13 01:56:51.079000             🧑  作者: Mango

Node.js Buffer.readUInt8() 方法

Buffer.readUInt8() 方法用于从 Buffer 对象中读取一个无符号的 8 位整数。

句法:

buffer.readUInt8( offset )

参数:此方法接受一个指定缓冲区对象位置的参数偏移量。它表示开始读取之前要跳过的字节数。 offset 的值介于0 到 buffer.length – 1之间。默认值为 0。

返回值:返回偏移量指定的整数值。

示例 1:

// Node.js program to demonstrate the
// buffer.readUInt8() method 
const ob=Buffer.from([1, 2, 3]);
  
// It reads the first value
console.log(ob.readUInt8(0));
  
// It reads the second value
console.log(ob.readUInt8(1));
  
// It throws an error
console.log(ob.readUInt8(4));

输出:

1
2
RangeError [ERR_OUT_OF_RANGE]: The value of "offset" is out of range.
It must be >= 0 and <= 2. Received 3
    at boundsError (internal/buffer.js:53:9)
    at Buffer.readUInt8 (internal/buffer.js:141:5)


示例 2:

// Node.js program to demonstrate the
// buffer.readUInt8() method 
const ob1 = Buffer.from([0X32, 0X44, 0X48]);
  
// It returns the first value
console.log(ob1.readUInt8(0));
  
// It returns the third value
console.log(ob1.readUInt8(2));
const t = Buffer.from("abc");
  
// It returns the ASCII value of 'a'
console.log(t.readUInt8(0));

输出:

68
72
97

注意:以上程序将使用node index.js命令编译运行。

参考: https://nodejs.org/api/buffer.html#buffer_buf_readuint8_offset