当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Node.js Buffer buf.readBigUInt64BE([offset])用法及代码示例


buf.readBigUInt64BE([offset])

历史
版本变化
v14.10.0、v12.19.0

此函数也可用作 buf.readBigUint64BE()

v12.0.0、v10.20.0

添加于:v12.0.0、v10.20.0


参数
  • offset <integer> 开始读取前要跳过的字节数。必须满足:0 <= offset <= buf.length - 8默认: 0
  • 返回: <bigint>

在指定的 offset 处从 buf 读取无符号大端 64 位整数。

此函数在 readBigUint64BE 别名下也可用。

import { Buffer } from 'node:buffer';

const buf = Buffer.from([0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff]);

console.log(buf.readBigUInt64BE(0));
// Prints: 4294967295nconst { Buffer } = require('node:buffer');

const buf = Buffer.from([0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff]);

console.log(buf.readBigUInt64BE(0));
// Prints: 4294967295n

相关用法


注:本文由纯净天空筛选整理自nodejs.org大神的英文原创作品 buf.readBigUInt64BE([offset])。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。