- 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.writeFloatBE() 方法
Node.JS Buffer.writeFloatBE() 方法有助于在给定的偏移量处将大端浮点数 32 位写入当前缓冲区对象。
浮点数 32 位也称为 FP32 或 float32。使用时,它会占用计算机中的 32 位内存。
浮点数 32 位分为符号、指数和有效精度。符号取 1 位,指数取 8 比特,其余 24 位(23 用于显式存储)按有效和精度取。
- 符号位表示数字的符号为正或负。
- 指数是一个 8 位无符号整数,最小值为 0,最大值为 255。
- 有效值为 24 位。例如,数字为 125.3。所以这里的整数值 1253 是有效数,$10^{-1}$ 是幂项,−1 是指数。
语法
以下是Node.JS Buffer.writeFloatBE()方法的语法 -
buf.writeFloatBE(value[, offset])
参数
此方法接受两个参数。下面将对此进行解释。
- value − (必需) 必须写入缓冲区的值。
- offset − (可选) 此处的偏移量表示开始写入的位置。偏移量大于或等于 0,也小于或等于 buffer.length-4。默认值为 0。
返回值
方法 Buffer.writeFloatBE() 写入给定值并返回偏移量加上写入的字节数。
例为了创建一个缓冲区,我们将使用 NodeJS Buffer.alloc() 方法 -
const buffer = Buffer.alloc(10);
buffer.writeFloatBE(0xfeaabe, 0);
console.log(buffer);
输出
我们使用的偏移量是 0。在执行时,从第 0 个位置开始的值将被写入创建的缓冲区。为上述创建的缓冲区长度为 10。因此,我们只能使用值为 0 到 6 的偏移量。如果任何值 >6,它将给出错误ERR_OUT_OF_RANGE。
<Buffer 4b 7e aa be 00 00 00 00 00 00>
例
在此示例中,将使用大于 buffer.length − 4 的偏移量。它应该抛出一个错误,如下所示。
const buffer = Buffer.alloc(10);
buffer.writeFloatBE(0xfeaabe, 7);
console.log(buffer);
输出
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 <= 6. Received 7
at boundsError (internal/buffer.js:83:9)
at checkBounds (internal/buffer.js:52:5)
at Buffer.writeFloatBackwards [as writeFloatBE] (internal/buffer.js:941:3)
at Object.<anonymous> (C:\nodejsProject\src\testbuffer.js:2:8)
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'
}
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 <= 6. Received 7
at boundsError (internal/buffer.js:83:9)
at checkBounds (internal/buffer.js:52:5)
at Buffer.writeFloatBackwards [as writeFloatBE] (internal/buffer.js:941:3)
at Object.<anonymous> (C:\nodejsProject\src\testbuffer.js:2:8)
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'
}
例
为了创建一个缓冲区,我们将使用 Buffer.allocUnsafe() 方法 -
const buffer = Buffer.allocUnsafe(10);
buffer.writeFloatBE(0xfeaabe);
console.log(buffer);
输出
偏移量不使用,默认情况下将取为 0。因此,上述的输出如下所示。
<Buffer 4b 7e aa be 01 00 00 00 00 00>