📜  Node.js Buffer.values() 方法

📅  最后修改于: 2022-05-13 01:56:52.399000             🧑  作者: Mango

Node.js Buffer.values() 方法

缓冲区是一种临时内存存储器,用于在将数据从一个地方移动到另一个地方时存储数据。它就像一个整数数组。

Buffer.values() 方法用于创建一个循环或迭代对象,其中包含缓冲区实例的每个字节的值。当在 for...of 语句中使用 Buffer 时,会自动调用此方法。

句法:

Buffer.values()

返回值:它返回一个遍历缓冲区每个字节的迭代器。

下面的例子说明了 Node.js 中Buffer.values()方法的使用:

示例 1:

// Node.js program to demonstrate the  
// Buffer.values() Method
const buffer = Buffer.from('geek');
   
// Display the buffer ASCII character
for (const value of buffer.values()) {
      console.log(value);
}

输出:

103
101
101
107

示例 2:

// Node.js program to demonstrate the  
// Buffer.values() Method
const buffer = Buffer.from('geek');
   
// Display the ASCII values
for (const value of buffer.values()) {
  console.log(value);
}
// Prints:
// 103
// 101
// 101
// 107
   
const buffer2 = Buffer.from('GEEK');
   
// Display the ASCII values
for (const value of buffer2.values()) {
  console.log(value);
} 
// Prints:
// 71
// 69
// 69
// 75
  
var op = Buffer.compare(buffer, buffer2);
console.log(op); 
// Prints: 1 
// As buffer is higher than buffer2 i.e if
// Buffer should come before buffer2 when sorted.

输出:

103
101
101
107
71
69
69
75
1

注意:以上程序将使用node index.js命令编译运行。

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