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


Node.js Buffer.readInt16BE()用法及代码示例


Buffer.readInt16BE()方法是Buffer类的内置应用程序编程接口,带有in Buffer模块,该模块以big endian格式从缓冲区中指定的偏移量处读取16位有符号整数。

用法:

Buffer.readInt16BE( offset )

参数:此方法接受单个参数偏移量,该偏移量指定开始写入之前要跳过的字节数(整数)。 offset的值在0范围内


返回值:它返回偏移量以及写入的字节数。

范例1:

// Node.js program to demonstrate the    
// Buffer.readInt16BE() method   
  
// Create a buffer  
const buf = Buffer.from([0, 3]); 
  
// Display the result 
console.log(buf.readInt16BE(0));

输出:

3

范例2:

// Node.js program to demonstrate the    
// Buffer.readInt16BE() method   
  
// Create a buffer  
const buf = Buffer.from([0, 3]); 
  
// Display the result 
console.log(buf.readInt16BE(1));

输出:

internal/buffer.js:72
  throw new ERR_OUT_OF_RANGE(type || 'offset',
  ^

RangeError [ERR_OUT_OF_RANGE]:The value of "offset" is out of range.
It must be >= 0 and 

Reference:https://nodejs.org/api/buffer.html#buffer_buf_readint16be_offset



相关用法


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