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


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


Buffer.writeInt32LE()方法用于使用大字节序格式将指定的字节写入缓冲区。该值包含有效的带符号的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);

输出:

<Buffer 08 07 06 05 00 00 00 00>
<Buffer 08 07 06 05 08 07 06 05>

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

输出:

<Buffer 78 56 34 12 63 65 73 73>
<Buffer 78 56 34 12 56 34 12 00>

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

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



相关用法


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