當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。