• Node.js Video Tutorials

Node.js - Buffer.writeBigUInt64LE() 方法



NodeJS 的 Buffer.writeBigInt64LE() 方法用于将一个无符号的 64 位整数以小端序的形式写入缓冲区中指定偏移量的位置。

在计算机编程中,无符号整数指的是正整数,而有符号整数指的是正数和负数。

对于 64 位无符号整数,最小值为 0,最大值为 $2^{64}$-1。

语法

以下是 Node.JS Buffer.writeBigUInt64LE() 方法 的语法:

buf.writeBigUInt64LE(value[, offset])

参数

此方法接受两个参数,如下所述。

  • value − (必填) 要写入缓冲区的无符号 64 位整数。

  • offset − (可选) 偏移量指示开始写入的位置。偏移量必须大于或等于 0,并且小于或等于 buffer.length-8。默认值为 0。

返回值

buf.writeBigUInt64LE() 方法写入 64 位无符号整数的值,并返回偏移量加上写入的字节数。

您还可以使用可用的别名函数:buf.writeBigUint64LE(value[,offset])。这里函数名 (I) 为小写。

示例

为了创建一个缓冲区,我们将使用 NodeJS Buffer.alloc() 方法:

const buffer = Buffer.alloc(10);
buffer.writeBigUInt64LE(0x0108890060708n, 0);
console.log(buffer);

输出

我们在此方法中使用的偏移量为 0。执行时,将在创建的缓冲区的第 0 个位置写入 64 位无符号整数。上面创建的缓冲区长度为 10。因此,我们只能使用 0 到 2 之间的偏移量值。如果任何值 >2,则会报错 ERR_OUT_OF_RANGE

<Buffer 08 07 06 90 88 10 00 00 00 00>

示例

在本例中,我们将使用一个大于 buffer.length - 8 的偏移量。它应该会抛出如下所示的错误。

const buffer = Buffer.alloc(10);
buffer.writeBigUInt64LE(0x0108890060708n, 3);
console.log(buffer);

输出

internal/buffer.js:83
   throw new ERR_OUT_OF_RANGE(type || 'offset',
   ^
   
RangeError [ERR_OUT_OF_RANGE]: The value of "offset" is out of range. It must be >= 0 and <= 2. Received 3
   at boundsError (internal/buffer.js:83:9)
   at checkBounds (internal/buffer.js:52:5)
PS C:\nodejsProject> node src/testbuffer.js
internal/buffer.js:83
   throw new ERR_OUT_OF_RANGE(type || 'offset',
   ^
   
RangeError [ERR_OUT_OF_RANGE]: The value of "offset" is out of range. It must be >= 0 and <= 2. Received 3
   at boundsError (internal/buffer.js:83:9)
   at checkBounds (internal/buffer.js:52:5)
   at checkInt (internal/buffer.js:71:3)
   at writeBigU_Int64LE (internal/buffer.js:576:3)
   at Buffer.writeBigUInt64LE (internal/buffer.js:598:10)
   at Object.<anonymous> (C:\nodejsProject\src\testbuffer.js:2:8)
   at Module._compile (internal/modules/cjs/loader.js:1063:30)
   at Object.Module._extensions..js (internal/modules/cjs/loader.js:1092:10)
   at Module.load (internal/modules/cjs/loader.js:928:32)
   at Function.Module._load (internal/modules/cjs/loader.js:769:14) {
      code: 'ERR_OUT_OF_RANGE'
   }

示例

为了创建一个缓冲区,我们将使用 Buffer.allocUnsafe() 方法:

const buffer = Buffer.allocUnsafe(10);
buffer.writeBigUInt64LE(0x010060708n);
console.log(buffer);

输出

未使用偏移量,默认情况下将取值为 0。因此,上面的输出如下所示:

<Buffer 08 07 06 10 00 00 00 00 00 00>
nodejs_buffer_module.htm
广告