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


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



相关用法


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