- Node.js教程
- Node.js - 教程
- Node.js - 简介
- Node.js - 环境设置
- Node.js - 首次申请
- Node.js - REPL 终端
- Node.js - 命令行选项
- Node.js - 包管理器 (NPM)
- Node.js - 回调概念
- Node.js - 上传文件
- Node.js - 发送电子邮件
- Node.js - 活动
- Node.js - 事件循环
- Node.js - 事件发射器
- Node.js - 调试器
- Node.js - 全局对象
- Node.js - 控制台
- Node.js - 流程
- Node.js - 扩展应用程序
- Node.js - 包装
- Node.js - Express 框架
- Node.js - RESTful API
- Node.js - 缓冲器
- Node.js - Streams
- Node.js - 文件系统
- Node.js MySQL
- Node.js - MySQL 快速入门
- Node.js - MySQL创建数据库
- Node.js - MySQL创建表
- Node.js - MySQL Insert Into
- Node.js - MySQL Select From
- Node.js - MySQL Where 子句
- Node.js - MySQL Order By
- Node.js - MySQL Delete
- Node.js - MySQL Update
- Node.js - MySQL Join
- Node.js MongoDB
- Node.js - MongoDB 快速入门
- Node.js - MongoDB 创建数据库
- Node.js - MongoDB 创建集合
- Node.js - MongoDB Insert
- Node.js - MongoDB Find
- Node.js - MongoDB 查询
- Node.js - MongoDB 排序
- Node.js - MongoDB Delete
- Node.js - MongoDB Update
- Node.js - MongoDB Limit
- Node.js - MongoDB Join
- Node.js模块
- Node.js - 模块
- Node.js - 内置模块
- Node.js - utility 模块
- Node.js - Web 模块
Node.js - Buffer.readDoubleBE() 方法
Node.JS Buffer.readDoubleBE() 方法有助于在给定偏移量下从当前缓冲区对象读取大端序双 64 位数字。
双 64 位也称为 FP64 或 float64。使用时,它会占用计算机中的 64 位内存。
双 64 位被划分为符号、指数和有效精度。符号取 1 位,指数取 11 位,其余 53 位(52 用于显式存储)按有效精度取。
- 符号位表示数字的符号为正或负。
- 指数是一个 11 位无符号整数,最小值为 0,最大值为 2047。
- 有效值为 53 位。例如,数字为 120.53。所以这里的整数值 12053 是有效数,$10^{-2}$ 是幂项,-2 是指数。
语法
以下是Node.JS Buffer.readDoubleBE()方法的语法 -
buf.readDoubleBE([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.readDoubleBE(0));
输出
我们使用此方法使用的偏移量为 0。将返回第 0 位的 64 位双大端序数。为上述创建的缓冲区长度为 8。因此,我们只能使用值为 0 的偏移量。如果任何值 >0,它将给出错误ERR_OUT_OF_RANGE。
1.8681939987954357e-255
<Buffer 0b 0c 0d 0e 0f 10 11 12>
<Buffer 0b 0c 0d 0e 0f 10 11 12>
例
让我们创建一个 16 位的缓冲区,并查看使用 Node.JS Buffer.readDoubleBE() 方法返回的值。
const buffer = Buffer.from([0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
0xff, 0xff, 0xff, 0xff,0xff, 0xff, 0xff, 0xff]);
console.log("Length of buffer is ", buffer.length);
console.log("Reading at big integer at offset 2:", buffer.readDoubleBE(2));
输出
在上面的示例中,创建的缓冲区的长度为 16。因此,对于偏移量,我们可以使用 0 到 8 的值。
Length of buffer is 16
Reading at big integer at offset 2: 1.390671161566996e-309
Reading at big integer at offset 2: 1.390671161566996e-309
例
此示例将检查偏移量是否大于 buffer.length -8 的错误。让我们创建一个长度为 8 的缓冲区,这样,您可以将该值偏移为 0。
const buffer = Buffer.from([0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff]);
console.log("buffer length is ", buffer.length);
console.log("Reading at big integer at offset 1:", buffer.readDoubleBE(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.readDoubleBackwards [as readDoubleBE] (internal/buffer.js:442: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
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.readDoubleBackwards [as readDoubleBE] (internal/buffer.js:442: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