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


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



相关用法


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