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


Node.js Buffer buf.readIntBE(offset, byteLength)用法及代码示例


buf.readIntBE(offset, byteLength)

历史
版本变化
v10.0.0

删除了noAssert,并且不再将偏移和byteLength 强制转换为uint32

v0.11.15

添加于:v0.11.15


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

在指定的 offsetbuf 读取 byteLength 字节数,并将结果解释为大端序,二进制补码有符号值,最高支持 48 位精度。

import { Buffer } from 'node:buffer';

const buf = Buffer.from([0x12, 0x34, 0x56, 0x78, 0x90, 0xab]);

console.log(buf.readIntBE(0, 6).toString(16));
// Prints: 1234567890ab
console.log(buf.readIntBE(1, 6).toString(16));
// Throws ERR_OUT_OF_RANGE.
console.log(buf.readIntBE(1, 0).toString(16));
// Throws ERR_OUT_OF_RANGE.const { Buffer } = require('node:buffer');

const buf = Buffer.from([0x12, 0x34, 0x56, 0x78, 0x90, 0xab]);

console.log(buf.readIntBE(0, 6).toString(16));
// Prints: 1234567890ab
console.log(buf.readIntBE(1, 6).toString(16));
// Throws ERR_OUT_OF_RANGE.
console.log(buf.readIntBE(1, 0).toString(16));
// Throws ERR_OUT_OF_RANGE.

相关用法


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