buf.readUIntBE(offset, byteLength)
历史
版本 | 变化 |
---|---|
v14.9.0、v12.19.0 | 此函数也可用作 |
v10.0.0 | 删除了 |
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.
相关用法
- Node.js Buffer buf.readUInt32BE([offset])用法及代码示例
- Node.js Buffer buf.readUInt16BE([offset])用法及代码示例
- Node.js Buffer buf.readUInt8([offset])用法及代码示例
- Node.js Buffer buf.readUInt16LE([offset])用法及代码示例
- Node.js Buffer buf.readUIntLE(offset, byteLength)用法及代码示例
- Node.js Buffer buf.readUInt32LE([offset])用法及代码示例
- Node.js Buffer buf.readFloatLE([offset])用法及代码示例
- Node.js Buffer buf.readInt32LE([offset])用法及代码示例
- Node.js Buffer buf.readDoubleLE([offset])用法及代码示例
- Node.js Buffer buf.readBigUInt64LE([offset])用法及代码示例
- Node.js Buffer buf.readInt8([offset])用法及代码示例
- Node.js Buffer buf.readInt16BE([offset])用法及代码示例
- Node.js Buffer buf.readInt16LE([offset])用法及代码示例
- Node.js Buffer buf.readFloatBE([offset])用法及代码示例
- Node.js Buffer buf.readDoubleBE([offset])用法及代码示例
- Node.js Buffer buf.readInt32BE([offset])用法及代码示例
- Node.js Buffer buf.readBigUInt64BE([offset])用法及代码示例
- Node.js Buffer buf.readIntBE(offset, byteLength)用法及代码示例
- Node.js Buffer buf.readIntLE(offset, byteLength)用法及代码示例
- Node.js Buffer buf.writeBigUInt64BE(value[, offset])用法及代码示例
- Node.js Buffer buf.toString([encoding[, start[, end]]])用法及代码示例
- Node.js Buffer buf.writeDoubleLE(value[, offset])用法及代码示例
- Node.js Buffer buf.writeBigInt64LE(value[, offset])用法及代码示例
- Node.js Buffer buf.keys()用法及代码示例
- Node.js Buffer buf.writeFloatLE(value[, offset])用法及代码示例
注:本文由纯净天空筛选整理自nodejs.org大神的英文原创作品 buf.readUIntBE(offset, byteLength)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。