📜  Node.js Buffer.readFloatLE() 方法

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

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

示例 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 <= 0. Received 2
. . . 

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

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