当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Node.js Buffer.writeInt8()用法及代码示例


Buffer.writeInt8()方法是Buffer模块中Buffer类的内置应用程序编程接口,用于将值以指定的偏移量写入分配的缓冲区。

用法:

Buffer.writeInt8( value, offset )

参数:该方法接受上述和以下所述的两个参数:


  • value:此参数指定要写入缓冲区的数字或值。当值不是整数值时,行为是不确定的。
  • offset:它指定开始写入之前要跳过的字节数,或者只是表示缓冲区中的索引。 offset的值为0

返回值:此方法返回一个整数值,该值是偏移量和写入的字节数的总和。

以下示例说明了Node.js中Buffer.writeInt8()方法的使用:

范例1:

// Node.js program to demonstrate the  
// Buffer.writeInt8() method  
       
// Allocating buffer of size 4 
const buf = Buffer.allocUnsafe(4); 
   
// Writing 8 bit numbers to its 
// specified offset and printing 
// returned value to console 
console.log(buf.writeInt8(20, 0)); 
console.log(buf.writeInt8(-128, 1)); 
console.log(buf.writeInt8(-3, 2)); 
console.log(buf.writeInt8(127, 3)); 
   
// Printing buffer to console 
console.log(buf);

输出:

1
2
3
4
<Buffer 14 80 fd 7f>

范例2:

// Node.js program to demonstrate the  
// Buffer.writeInt8() method  
       
// Allocating buffer of size 2 
const buf = Buffer.allocUnsafe(2); 
  
// Printing the buffer before writing into it 
console.log("Before writing into buffer:"); 
console.log(buf); 
  
// Writing 8 bit signed integers 
console.log(buf.writeInt8(96, 0)); 
console.log(buf.writeInt8(-69, 1)); 
  
// Printing buffer after writing 
// 8 bit signed integers in it. 
console.log("After writing into buffer:"); 
console.log(buf);

输出:

Before writing into buffer:
<Buffer 98 98gt;
1
2
After writing into buffer:
<Buffer 60 bb>

注意:上面的程序将通过使用node index.js命令。

参考: https://nodejs.org/api/buffer.html#buffer_buf_writeint8_value_offset



相关用法


注:本文由纯净天空筛选整理自gekcho大神的英文原创作品 Node.js | Buffer.writeInt8() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。