📜  Node.js Buffer.writeUInt16BE() 方法

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

Node.js Buffer.writeUInt16BE() 方法

Buffer.writeUInt16BE() 方法用于使用 Big endian 格式将指定字节写入缓冲区对象。该值应该是一个有效的无符号 16 位整数。

句法:

Buffer.writeUInt16BE( value, offset )

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

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

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

示例 1:

// Node.js program to demonstrate the  
// Buffer.writeUInt16BE() Method
  
// Allocate a buffer
const buf = Buffer.allocUnsafe(4);
  
// Write the buffer element in BE format
buf.writeUInt16BE(0xabcd, 0);
  
// Display the buffer list
console.log(buf);
  
// Write the buffer element in BE format
buf.writeUInt16BE(0xfede, 2)
  
// Display the buffer list
console.log(buf);

输出:



示例 2:

// Node.js program to demonstrate the  
// Buffer.writeUInt16BE() Method
  
// Allocate a buffer
const buf = Buffer.allocUnsafe(4);
  
// Write the buffer element in BE format
buf.writeUInt16BE(0xabab, 0);
  
// Display the buffer list
console.log(buf);
  
// Write the buffer element in BE format
buf.writeUInt16BE(0xefde, 2);
  
// Display the buffer list
console.log(buf);

输出:



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

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