码迷,mamicode.com
首页 > 其他好文 > 详细

node函数buf.readDoubleBE详解

时间:2018-01-18 23:11:03      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:读取   logs   this   ble   off   out   number   nta   set   

  • 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详解

标签:读取   logs   this   ble   off   out   number   nta   set   

原文地址:https://www.cnblogs.com/wwhhq/p/8313285.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!