當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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


buf.readUIntBE(offset, byteLength)

曆史
版本變化
v14.9.0、v12.19.0

此函數也可用作 buf.readUintBE()

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>

在指定的 offset 處從 buf 讀取 byteLength 字節數,並將結果解釋為支持高達 48 位精度的無符號大端整數。

此函數在 readUintBE 別名下也可用。

import { Buffer } from 'node:buffer';

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

console.log(buf.readUIntBE(0, 6).toString(16));
// Prints: 1234567890ab
console.log(buf.readUIntBE(1, 6).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.readUIntBE(0, 6).toString(16));
// Prints: 1234567890ab
console.log(buf.readUIntBE(1, 6).toString(16));
// Throws ERR_OUT_OF_RANGE.

相關用法


注:本文由純淨天空篩選整理自nodejs.org大神的英文原創作品 buf.readUIntBE(offset, byteLength)。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。