📜  Node.js Buffer.keys() 方法

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

Node.js Buffer.keys() 方法

Buffer.keys() 方法用于返回一个迭代器对象,其中包含缓冲区对象中每个字节的键。

句法:

Buffer.keys()

参数:此方法不接受任何参数。

返回值:它返回一个具有缓冲区键的迭代器对象。

示例 1:

// Node.js program to demonstrate the   
// Buffer.keys() method  
var buf = Buffer.from('Hello World');
   
// Read in the iterator object
// and return the key number
for (index of buf.keys()) {
      console.log(index);
}

输出:

0
1
2
3
4
5
6
7
8
9 

示例 2:

// Node.js program to demonstrate the
// Buffer.keys() method
var buf1 = Buffer.from('abc');
var buf2 = Buffer.from('1');
   
// Read in the first iterator object
// and return the key number
for(index of buf1.keys()) {
    console.log(index);
}
   
// Read in the first iterator object
// and return the key number
for(index of buf2.keys()) {
    console.log(index)
}

输出:

0
1
2
0

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

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