• Node.js Video Tutorials

Node.js - Buffer.readDoubleLE() 方法



Node.JS Buffer.readDoubleLE() 方法用于从当前缓冲区对象中给定偏移量读取小端序双精度 64 位数字。

双精度 64 位数字也称为 FP64 或 float64。使用时,它在计算机中占用 64 位内存。

双精度 64 位数字分为符号位、指数位和尾数位。符号位占用 1 位,指数位占用 11 位,其余 53 位(其中 52 位用于显式存储)为尾数位。

  • 符号位表示数字的正负。

  • 指数位是一个 11 位无符号整数,最小值为 0,最大值为 2047。

  • 尾数位为 53 位。例如,数字为 120.53。这里整数 12053 是尾数,$10^{-2}$ 是幂项,-2 是指数。

语法

以下是Node.JS Buffer.readDoubleLE() 方法的语法:

buf.readDoubleLE([offset])

参数

  • offset - 指示读取起始位置的偏移量。偏移量大于或等于 0,并且小于或等于 buffer.length-8。默认值为 0。

返回值

此方法从当前缓冲区中给定偏移量返回 64 位小端序双精度数字。

示例

要创建一个缓冲区,我们将使用 NodeJS 的 Buffer.from() 方法:

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

输出

我们在此方法中使用的偏移量为 0。将返回第 0 位的 64 位小端序双精度数字。上面创建的缓冲区长度为 8。因此,我们只能使用值为 0 的偏移量。如果任何值 >0,则会给出 ERR_OUT_OF_RANGE 错误。

1.1800807103066695e-221
<Buffer 0b 0c 0d 0e 0f 10 11 12>

示例

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

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.readDoubleLE(1));

输出

在上面的示例中,创建的缓冲区长度为 16。因此,对于偏移量,我们可以使用 0 到 8 的值。执行上述程序后,它将生成以下输出:

Length of buffer is  16
Reading at big integer at offset 1: 3.7258146895053074e-265

示例

此示例将检查如果偏移量大于buffer.length −8时发生的错误。让我们创建一个长度为 8 的缓冲区,并且可以使用 0 作为偏移量值。

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 1:", buffer.readDoubleLE(1));

输出

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

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 <= 0. Received 1
   at boundsError (internal/buffer.js:58:9)
   at Buffer.readDoubleForwards [as readDoubleLE] (internal/buffer.js:460: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
nodejs_buffer_module.htm
广告