Buffer.writeBigUInt64LE()方法是Buffer模块中Buffer类的内置应用程序编程接口,用于将小端64位大整数值以指定的偏移量写入分配的缓冲区。
用法:
Buffer.writeBigUInt64LE( value, offset )
参数:
- value:此参数指定要写入缓冲区的大整数值。它应该是有效的64位Little Endian Big整数值。当值不是此值时,行为是不确定的。
- offset:它指定在写入之前要跳过的字节数,或者只是表示缓冲区中的索引。 offset的值是0 <= offset <= Buffer.length-8。其默认值为0。
返回值:此方法返回一个无符号整数值,该值是偏移量和写入的字节数的总和。
以下示例说明了Node.js中Buffer.writeBigUInt64LE()方法的使用:
范例1:
文件名:index.js
// Node.js program to demonstrate the
// buffer.writeBigUInt64LE() method
const buf = Buffer.allocUnsafe(8);
// Writing big integer value into buffer
// by using writeBigUInt64LE() method
buf.writeBigUInt64LE(0x01030405060708n, 0);
// display the buffer
console.log(buf);
使用以下命令运行index.js文件:
node index.js
输出:
<Buffer 08 07 06 05 04 03 01 00>
范例2:
文件名:index.js
// Node.js program to demonstrate the
// buffer.writeBigUInt64LE() method
const buf = Buffer.allocUnsafe(8);
// writing big integer value into buffer
// by using writeBigUInt64LE() method
buf.writeBigUInt64LE(0xaa03040506efffn, 0);
// Display the buffer
console.log(buf);
使用以下命令运行index.js文件:
node index.js
输出:
<Buffer ff ef 06 05 04 03 aa 00>
参考:https://nodejs.org/dist/latest-v12.x/docs/api/buffer.html#buffer_buf_writebiguint64le_value_offset
相关用法
- Node.js console.timeLog()用法及代码示例
- Node.js GM write()用法及代码示例
- Node.js GM operator()用法及代码示例
- Node.js GM randomThreshold()用法及代码示例
- Node.js GM negative()用法及代码示例
- Node.js GM median()用法及代码示例
- Node.js GM crop()用法及代码示例
- Node.js GM despeckle()用法及代码示例
- Node.js GM emboss()用法及代码示例
- Node.js GM whitePoint()用法及代码示例
- Node.js GM drawRectangle()用法及代码示例
- Node.js GM shave()用法及代码示例
- Node.js GM recolor()用法及代码示例
- Node.js GM gamma()用法及代码示例
注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 Node.js Buffer.writeBigUInt64LE() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。