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


Node.js Buffer.readFloatLE()用法及代碼示例


buf.readFloatLE()方法用於從Buffer類中以指定的字節序格式讀取32位浮點數。它促進了TCP流內部的八位位組流,文件係統的操作以及各種其他因子之間的交互。

用法:

buffer.readFloatLE( integer )

參數:此方法接受單個參數偏移量,該偏移量包含一個值,該值指示在初始化讀取操作之前要跳過多少個字節。 offset的值介於0到buffer.length-4之間。默認值為0。


返回值:它以小尾數格式返回整數值。

以下示例說明了在Node.js中使用buf.readFloatLE()方法:

範例1:

// Node.js program to demonstrate the   
// buffer.readFloatLE() Method 
      
// Creating a buffer of given size  
const buf = Buffer.from([5, 6, 7, 8]);  
      
// Display the result  
console.log(buf.readFloatLE(0));  
  
console.log(buf); 

輸出:

4.063216068939723e-34
<Buffer 05 06 07 08>

範例2:

// Node.js program to demonstrate the   
// buffer.readFloatLE() Method 
      
// Creating a buffer of given size  
const buf = Buffer.from([55, 66, 77, 88]);  
      
// Display the result  
console.log(buf.readFloatLE(0));  
  
console.log(buf); 

輸出:

internal/buffer.js:72
  throw new ERR_OUT_OF_RANGE(type || 'offset',
  ^

RangeError [ERR_OUT_OF_RANGE]:The value of "offset" is out of range.
 It must be >= 0 and 

Note: The above program will compile and run by using the node index.js command.

Reference: https://nodejs.org/api/buffer.html#buffer_buf_readfloatle_offset



相關用法


注:本文由純淨天空篩選整理自MerlynShelley大神的英文原創作品 Node.js | Buffer.readFloatLE() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。