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


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


Buffer.writeInt32BE()方法是Buffer模块中Buffer类的内置应用程序编程接口,用于将整数值写入具有big-endian格式的指定偏移量的缓冲区,该整数值应为有效的带符号32位整数。如果该值超出32位有符号整数的范围,则会引发错误。整数值将被解释并写入为两个补码有符号整数。

用法:

Buffer.writeInt32BE( value, offset )

参数:该方法接受上述和以下所述的两个参数:
value:此参数保存一个需要写入缓冲区的32位带符号整数。
offset:此参数保存一个整数值,即在开始写入缓冲区之前要跳过的字节数。 offset的值介于0到buf.length-4之间。它是一个可选参数,默认值为0。


返回值:此方法返回一个整数值,即偏移量与写入的字节数之和。

以下示例说明了在Node.js中使用buf.writeInt32BE()方法:

范例1:

// Node.js program to demonstrate the   
// Buffer.writeInt32BE() Method 
  
// Allocating buffer space of 4 bytes 
const buf = Buffer.allocUnsafe(4); 
  
// Writing the value to the buffer 
buf.writeInt32BE(0x7bcaf892); 
  
// Display the buffer to stdout 
console.log(buf);

输出:

<Buffer 7b ca f8 92>

范例2:

// Node.js program to demonstrate the   
// Buffer.writeInt32BE() Method 
  
// Allocating buffer space of 8 bytes 
const buf = Buffer.allocUnsafe(8); 
   
// Writing the value to the buffer from 0 offset 
buf.writeInt32BE(0x7bcaf983, 0); 
  
// Writing the value to the buffer from 4 offset 
buf.writeInt32BE(0x7fffffff, 4); 
   
// Display the buffer to stdout 
console.log(buf);

输出:

<Buffer 7b ca f9 83 7f ff ff ff>

范例3:此示例将显示一条错误消息,因为偏移量大于限制,即偏移量值不在0到buf.length-4之间。

// Node.js program to demonstrate the   
// Buffer.writeInt32BE() Method 
  
// Allocating buffer space of 8 bytes 
const buf = Buffer.allocUnsafe(8); 
   
// Writing the value to the buffer from 0 offset 
buf.writeInt32BE(0x7bcaf983, 0); 
  
// Writing the value to the buffer from 4 offset 
buf.writeInt32BE(0x7fffffff, 5); 
   
// Display the buffer to stdout 
console.log(buf);

输出:

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_writeint32be_value_offset



相关用法


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