- 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.readBigInt64BE() 方法
NodeJS Buffer.readBigInt64BE() 方法有助于从缓冲区对象读取给定偏移量的有符号大端序 64 位整数。
- 有符号的 64 位整数是 264-1。结果将是一个 20 位数字。
- 可以以 64 位存储的最小值为:-9,223,372,036,854,775,808。
- 64位可以存储的最大值为:9,223,372,036,854,775,807。
在 Big endian 系统中,它将最高有效字节存储在最低的存储地址。而 Little endian 是一个系统,其中最低有效字节位于最高的存储地址。
请注意,此方法从节点版本 12.0.0 开始可用。
语法
以下是NodeJS readBigInt64BE()方法的语法 -
buf.readBigInt64LE(offset)
参数
buf.readBigInt64LE() 方法接受单个参数。下面将对此进行解释。
- offset - 指示开始读取的位置的偏移量。偏移量大于或等于 0,也小于或等于 buffer.length-8。默认值为 0。
返回值
buf.readBigInt64LE() 方法在给定的偏移量处返回 64 位有符号整数值。
例在以下示例中,我们与 buffer.readBigInt64BE() 方法一起使用的偏移量为 0。将返回第 0 位的 64 位有符号整数。为上述创建的缓冲区长度为 8。所以我们只能使用值为 0 的偏移量。如果任何值>0,它将给出错误ERR_OUT_OF_RANGE。
const buffer = Buffer.from([0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff]);
console.log("buffer stored in memory as", buffer);
console.log("Reading at big integer at offset 0:", buffer.readBigInt64BE(0));
输出
buffer stored in memory as <Buffer 00 00 00 00 ff ff ff ff>
Reading at big integer at offset 0: 4294967295n
Reading at big integer at offset 0: 4294967295n
例
让我们创建一个 16 位的缓冲区,并查看使用 readBigInt64BE() 方法返回的值。
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 0:", buffer.readBigInt64BE(2));
创建的缓冲区长度以上为 16。因此,对于偏移量,我们可以使用 0 到 8 之间的值。
输出
Length of buffer is 16
Reading at big integer at offset 0: 281474976710655n
Reading at big integer at offset 0: 281474976710655n
例
在此示例中,如果偏移量大于 buffer.length -8,将检查错误。让我们创建一个长度为 8 的缓冲区,您可以使用它来偏移值为 0。使用大于 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.readBigInt64BE(1));
输出
buffer length is 8
internal/buffer.js:83
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:83:9)
at Buffer.readBigInt64BE (internal/buffer.js:152:5)
at Object.<anonymous> (C:\nodejsProject\src\testbuffer.js:5:59)
at Module._compile (internal/modules/cjs/loader.js:1063:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:1092:10)
at Module.load (internal/modules/cjs/loader.js:928:32)
at Function.Module._load (internal/modules/cjs/loader.js:769:14)
at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:72:12)
at internal/main/run_main_module.js:17:47 {
code: 'ERR_OUT_OF_RANGE's
internal/buffer.js:83
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:83:9)
at Buffer.readBigInt64BE (internal/buffer.js:152:5)
at Object.<anonymous> (C:\nodejsProject\src\testbuffer.js:5:59)
at Module._compile (internal/modules/cjs/loader.js:1063:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:1092:10)
at Module.load (internal/modules/cjs/loader.js:928:32)
at Function.Module._load (internal/modules/cjs/loader.js:769:14)
at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:72:12)
at internal/main/run_main_module.js:17:47 {
code: 'ERR_OUT_OF_RANGE's