- 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 - 流
- Node.js - 文件系统
- Node.js MySQL
- Node.js - MySQL 入门
- Node.js - MySQL 创建数据库
- Node.js - MySQL 创建表
- Node.js - MySQL 插入数据
- Node.js - MySQL 查询数据
- Node.js - MySQL 条件查询
- Node.js - MySQL 排序
- Node.js - MySQL 删除数据
- Node.js - MySQL 更新数据
- Node.js - MySQL 连接查询
- Node.js MongoDB
- Node.js - MongoDB 入门
- Node.js - MongoDB 创建数据库
- Node.js - MongoDB 创建集合
- Node.js - MongoDB 插入数据
- Node.js - MongoDB 查找数据
- Node.js - MongoDB 查询
- Node.js - MongoDB 排序
- Node.js - MongoDB 删除数据
- Node.js - MongoDB 更新数据
- Node.js - MongoDB 数据限制
- Node.js - MongoDB 连接查询
- Node.js 模块
- Node.js - 模块
- Node.js - 内置模块
- Node.js - 实用工具模块
- Node.js - Web 模块
- Node.js 有用资源
- Node.js - 快速指南
- Node.js - 有用资源
- Node.js - 讨论
Node.js - Buffer.readUInt32LE() 方法
NodeJS 的 Buffer.readUInt32LE() 方法用于读取缓冲区中给定偏移量处的小端序无符号 32 位整数。无符号 32 位整数可以存储的值范围是 0 到 4294967295。
语法
以下是 Node.JS Buffer.readUInt32LE() 方法 的语法:
buf.readUInt32LE(offset)
参数
offset - 指示开始读取位置的偏移量。偏移量大于等于 0,小于等于 buffer.length-4。默认值为 0。
返回值
此方法返回缓冲区中给定偏移量处的 32 位无符号整数值。
示例
要创建缓冲区,我们将使用 NodeJS Buffer.from() 方法:
const buffer = Buffer.from([0,15,10,12,13,14,22,25]); console.log("buffer stored in memory as", buffer); console.log("Reading 32 bit unsigned integer at offset 0:", buffer.readUInt32LE(0));
输出
我们在本方法中使用的偏移量为 0。将返回第 0 位的 32 位无符号整数值。上面创建的缓冲区长度为 8。因此,我们只能使用 0、1、2 和 3 作为偏移量值。如果任何值 >3,则会返回错误 ERR_OUT_OF_RANGE。
buffer stored in memory as <Buffer 00 0f 0a 0c 0d 0e 16 19> Reading 32 bit unsigned integer at offset 0: 201985792
示例
让我们创建一个具有 16 位的缓冲区,并查看使用 Node.JS Buffer.readUInt32LE() 方法返回的值。
const buffer = Buffer.from([0, 1, 2, 3, 4, 5, 6, 7,8, 9, 10, 11,12, 13, 14, 15]); console.log("Length of buffer is ", buffer.length); console.log("Reading at big integer at offset 2:", buffer.readUInt32LE(2));
输出
Length of buffer is 16 Reading at big integer at offset 2: 84148994
示例
此示例将检查如果偏移量大于 buffer.length -4 时出现的错误。让我们创建一个长度为 8 的缓冲区,您可以用它从 0 到 4 设置偏移量。在下面的示例中,我们使用偏移量 7,因此它将抛出错误,如输出所示。
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 7:", buffer.readUInt32LE(7));
输出
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 7 at boundsError (internal/buffer.js:58:9) at Buffer.readUInt32LE (internal/buffer.js:378: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
广告