📜  Node.js Buffer.writeInt32LE() 方法

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

Node.js Buffer.writeInt32LE() 方法

Buffer.writeInt32LE() 方法用于使用 little-endian 格式将指定字节写入缓冲区。该值包含一个有效的有符号 32 位整数。如果该值包含其他有符号的 32 位整数,则其行为未定义。

句法:

Buffer.writeInt32LE( value, offset )

参数:此方法接受上面提到的两个参数,如下所述:

  • value:它是一个整数值,表示写入缓冲区的值。
  • offset:它是一个整数值,表示在开始写入之前要跳过的字节数,offset 的值在0 到 buffer.length – 4的范围内。它的默认值为 0。

返回值:返回偏移量加上写入的字节数。

示例 1:

// Node.js program to demonstrate the  
// Buffer.writeInt32LE() Method
  
// Allocate a buffer
const buf = Buffer.allocUnsafe(8);
  
// Write the buffer element in LE format
buf.writeInt32LE(0x05060708, 0);
  
// Display the buffer list
console.log(buf);
  
// Write the buffer element in LE format
buf.writeInt32LE(0x05060708, 4);
  
// Display the buffer list
console.log(buf);

输出:



示例 2:

// Node.js program to demonstrate the  
// Buffer.writeInt32LE() Method
  
// Allocate a buffer
const buf = Buffer.allocUnsafe(8);
  
// Write the buffer element in LE format
buf.writeInt32LE(0x12345678, 0);
  
// Display the buffer list
console.log(buf);
  
// Write the buffer element in LE format
buf.writeInt32LE(0x123456, 4);
  
// Display the buffer list
console.log(buf);

输出:



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

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