📜  Node.js Buffer.writeUInt32LE() 方法

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

Node.js Buffer.writeUInt32LE() 方法

Buffer.writeUInt32LE() 方法用于使用 Little endian 格式将指定字节写入缓冲区对象。该值包含一个有效的未分配的 32 位整数。

句法:

Buffer.writeUInt32LE( value, offset )

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

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

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

示例 1:

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

输出:



示例 2:

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

输出:



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

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