buf.writeUInt8(value[, offset])


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

value 写入 buf 的指定 offsetvalue 必须是有效的无符号 8 位整数。当 value 不是无符号 8 位整数时,行为是未定义的。

【Writes value to buf at the specified offset. value must be a valid unsigned 8-bit integer. Behavior is undefined when value is anything other than an unsigned 8-bit integer.】

该函数也可以通过 writeUint8 别名使用。

【This function is also available under the writeUint8 alias.】

import { Buffer } from 'node:buffer';

const buf = Buffer.allocUnsafe(4);

buf.writeUInt8(0x3, 0);
buf.writeUInt8(0x4, 1);
buf.writeUInt8(0x23, 2);
buf.writeUInt8(0x42, 3);

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

const buf = Buffer.allocUnsafe(4);

buf.writeUInt8(0x3, 0);
buf.writeUInt8(0x4, 1);
buf.writeUInt8(0x23, 2);
buf.writeUInt8(0x42, 3);

console.log(buf);
// Prints: <Buffer 03 04 23 42>