buf.readFloatLE()方法用于从Buffer类中以指定的字节序格式读取32位浮点数。它促进了TCP流内部的八位位组流,文件系统的操作以及各种其他因子之间的交互。
用法:
buffer.readFloatLE( integer )
参数:此方法接受单个参数偏移量,该偏移量包含一个值,该值指示在初始化读取操作之前要跳过多少个字节。 offset的值介于0到buffer.length-4之间。默认值为0。
返回值:它以小尾数格式返回整数值。
以下示例说明了在Node.js中使用buf.readFloatLE()方法:
范例1:
// Node.js program to demonstrate the
// buffer.readFloatLE() Method
// Creating a buffer of given size
const buf = Buffer.from([5, 6, 7, 8]);
// Display the result
console.log(buf.readFloatLE(0));
console.log(buf);
输出:
4.063216068939723e-34 <Buffer 05 06 07 08>
范例2:
// Node.js program to demonstrate the
// buffer.readFloatLE() Method
// Creating a buffer of given size
const buf = Buffer.from([55, 66, 77, 88]);
// Display the result
console.log(buf.readFloatLE(0));
console.log(buf);
输出:
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 andNote: The above program will compile and run by using the
node index.js
command.Reference: https://nodejs.org/api/buffer.html#buffer_buf_readfloatle_offset
相关用法
注:本文由纯净天空筛选整理自MerlynShelley大神的英文原创作品 Node.js | Buffer.readFloatLE() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。