Node.js Buffer.readFloatBE() 方法
Buffer.readFloatBE() 方法是 Buffer 模块中 Buffer 类的内置应用程序编程接口,用于将大端序 32 位浮点值读取到指定偏移处的分配缓冲区。
句法:
Buffer.readFloatBE( offset )
参数:此方法接受单个参数偏移量,它指定在读取之前要跳过的字节数。 offset 的值是0 <= offset <= Buffer.length – 4 。它的默认值为 0。
返回值:它以大端格式返回一个整数值。
下面的例子说明了在 Node.js 中使用 buf.readFloatBE() 方法:
示例 1:
// Node program to demonstrate the
// Buffer.readFloatBE(INTEGER) method
// Creating a buffer of given size
const buf = Buffer.from([10, 20, 30, 40, 50, 60, 70, 80]);
// Display the result
console.log("Functions of Buffer.readFloatBE(int)");
console.log(buf.readFloatBE(0))
console.log(buf);
输出:
Functions of Buffer.readFloatBE(int)
7.13161255447549e-33
示例 2:
// Node program to demonstrate the
// Buffer.readFloatBE(INTEGER) method
// Creating a buffer of given size
const buf = Buffer.from([100, 200, 300, 400, 500, 600, 700, 800]);
// Display the result
console.log("Functions of Buffer.readFloatBE(int)");
console.log(buf.readFloatBE(5))
console.log(buf);
输出:
Functions of Buffer.readFloatBE(int)
internal/buffer.js:72
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 5
. . .
注意:以上程序将使用node index.js
命令编译运行。
参考: https://nodejs.org/docs/latest-v11.x/api/buffer.html#buffer_buf_readfloatbe_offset