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


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);

输出:

<Buffer cd ab cd ab>
<Buffer ba dc ce fa>

范例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);

输出:

<Buffer ce ab 00 00>
<Buffer ab 0e 00 00>

注意:上面的程序将通过使用node index.js命令。

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



相关用法


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