node函数buf.readDoubleBE详解

Posted wwhhq

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了node函数buf.readDoubleBE详解相关的知识,希望对你有一定的参考价值。

  • offset {Number} 0 <= offset <= buf.length - 8
  • noAssert {Boolean} 默认:false
  • 返回:{Number}

从该 Buffer 指定的带有特定尾数格式(readDoubleBE() 返回一个较大的尾数,readDoubleLE() 返回一个较小的尾数)的 offset 位置开始读取一个64位双精度值。

设置 noAssert 为 true ,将跳过对 offset 的验证。这将允许 offset 超出缓冲区的末尾。

const buf = Buffer.from([1, 2, 3, 4, 5, 6, 7, 8]);

buf.readDoubleBE();
// Returns: 8.20788039913184e-304
buf.readDoubleLE();
// Returns: 5.447603722011605e-270
buf.readDoubleLE(1);
// throws RangeError: Index out of range

buf.readDoubleLE(1, true); // Warning: reads passed end of buffer!
// Segmentation fault! don't do this!

以上是关于node函数buf.readDoubleBE详解的主要内容,如果未能解决你的问题,请参考以下文章

HTMLParser使用详解- Node内容

node源码详解 —— 在main函数之前 —— js和C++的边界,process.binding

jvm之年轻代(新生代)老年代永久代以及GC原理详解GC优化

node源码详解

KoaHub.JS基于Node.js开发的Koa 生成验证码插件代

PHP匿名函数(闭包函数)详解_php技巧 - PHP