当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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



相关用法


注:本文由纯净天空筛选整理自bestharadhakrishna大神的英文原创作品 Node.js | Buffer.readUInt8() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。