buf.writeInt32BE(value[, offset])


  • value <integer> 要写入 buf 的数字。
  • offset <integer> 写入前要跳过的字节数。必须满足 0 <= offset <= buf.length - 4默认值: 0
  • 返回值:<integer> offset 加上写入的字节数。

value 以大端模式写入指定 offsetbufvalue 必须是有效的有符号 32 位整数。当 value 不是有符号 32 位整数时,行为未定义。

【Writes value to buf at the specified offset as big-endian. The value must be a valid signed 32-bit integer. Behavior is undefined when value is anything other than a signed 32-bit integer.】

value 被解释并写入为二进制补码有符号整数。

【The value is interpreted and written as a two's complement signed integer.】

import { Buffer } from 'node:buffer';

const buf = Buffer.allocUnsafe(4);

buf.writeInt32BE(0x01020304, 0);

console.log(buf);
// Prints: <Buffer 01 02 03 04>const { Buffer } = require('node:buffer');

const buf = Buffer.allocUnsafe(4);

buf.writeInt32BE(0x01020304, 0);

console.log(buf);
// Prints: <Buffer 01 02 03 04>