Node.js - Buffer.readFloatLE() 方法



Node.JS Buffer.readFloatLE() 方法有助于在给定偏移量处从当前缓冲区对象读取小端浮点数 32 位。

浮点数 32 位也称为 FP32 或 float32。使用时,它会占用计算机中的 32 位内存。

浮点数 32 位分为符号、指数和有效精度。符号取 1 位,指数取 8 比特,其余 24 位(23 用于显式存储)按有效和精度取。

  • 符号位表示数字的符号为正或负。
  • 指数是一个 8 位无符号整数,最小值为 0,最大值为 255。
  • 有效值为 24 位。例如,数字为 125.3。所以这里的整数值 1253 是有效数,$10^{−1}$ 是幂项,−1 是指数。

语法

以下是 Node.JS Buffer.readFloatLE()方法的语法 -


 buf.readFloatLE([offset])

参数

  • offset - 指示开始读取的位置的偏移量。偏移量大于或等于 0,也小于或等于 buffer.length−4。默认值为 0。

返回值

此方法从给定偏移量处的当前缓冲区返回 32 位小端浮点数。

为了创建一个缓冲区,我们将使用 NodeJS Buffer.from() 方法 -


const buffer = Buffer.from([11, 12, 13, 14, 15, 16, 17, 18]);
console.log(buffer.readFloatLE(0));
console.log(buffer);

输出

我们使用此方法使用的偏移量为 0。将返回第 0 个位置的 32 位浮点小端序数。为上述创建的缓冲区长度为 8。因此,我们只能使用值为 0 到 4 的偏移量。如果任何值 >0,它将给出错误ERR_OUT_OF_RANGE。

1.7385390296684153e-30
<Buffer 0b 0c 0d 0e 0f 10 11 12>

让我们创建一个 16 位的缓冲区,并使用 Node.JS Buffer.readFloatLE() 方法查看返回的值。


const buffer = Buffer.from([1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16]);
console.log("Length of buffer is ", buffer.length); 	
console.log("Reading at big integer at offset 1:", buffer.readFloatLE(1));

输出

在上面的示例中,创建的缓冲区的长度为 16。因此,对于偏移量,我们可以使用 0 到 12 之间的值。

Length of buffer is 16
Reading at big integer at offset 1: 6.207162620248253e-36

此示例将检查偏移量是否大于 buffer.length -4 的错误。让我们创建一个长度为 8 的缓冲区,这样,您可以将值偏移为 0 到 4。


const buffer = Buffer.from([1, 2 ,3, 4, 5, 6, 7, 8]);
console.log("buffer length is ", buffer.length); 	
console.log("Reading at big integer at offset 5:", buffer.readFloatLE(5));

输出

由于我们在上述程序中使用了大于 4 的偏移量,因此它将抛出如下所示的错误 -

buffer length is 8
internal/buffer.js:58
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 <= 4. Received 5
at boundsError (internal/buffer.js:58:9)
at Buffer.readFloatForwards [as readFloatLE] (internal/buffer.js:428:5)
at Object.<anonymous> (C:\nodejsProject\src\testbuffer.js:3:59)
at Module._compile (internal/modules/cjs/loader.js:816:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:827:10)
at Module.load (internal/modules/cjs/loader.js:685:32)
at Function.Module._load (internal/modules/cjs/loader.js:620:12)
at Function.Module.runMain (internal/modules/cjs/loader.js:877:12)
at internal/main/run_main_module.js:21:11