當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Node.js Buffer.entries()用法及代碼示例


Buffer.entries()方法用於從緩衝區的內容創建並返回[索引,字節]對的迭代器。

用法:

Buffer.entries()

參數:此方法不接受任何參數。


返回值:此方法以[索引,字節]格式返回成對的Iterator對象。

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

範例1:

// Node program to demonstrate the 
// Buffer.entries() method 
  
// Create a Buffer from Buffer.from() function 
const buf = Buffer.from('GeeksforGeeks'); 
  
for (const pair of buf.entries()) { 
    console.log(pair); 
}

輸出:

[ 0, 71 ]
[ 1, 101 ]
[ 2, 101 ]
[ 3, 107 ]
[ 4, 115 ]
[ 5, 102 ]
[ 6, 111 ]
[ 7, 114 ]
[ 8, 71 ]
[ 9, 101 ]
[ 10, 101 ]
[ 11, 107 ]
[ 12, 115 ]

範例2:

// Node program to demonstrate the 
// Buffer.entries() method 
  
// Create a JSON Object 
var a = { 
    "name":"GeeksforGeeks"
} 
  
// Convert to a string 
a = JSON.stringify(a); 
  
// Creating a Buffer 
const b = Buffer.from(a); 
for( const pair of b.entries()) 
    process.stdout.write(String.fromCharCode(pair[1]), "");

輸出:

{"name":"GeeksforGeeks"}

範例3:

// Node program to demonstrate the 
// Buffer.entries() method 
  
// Create an array 
var arr = [true, true, false]; 
  
// Creating a buffer 
const buf = Buffer.from(arr); 
for(const pair of buf.entries()) { 
    console.log("index " + pair[0] + ", value " + pair[1]); 
} 

輸出:

index 0, value 1
index 1, value 1
index 2, value 0

參考: https://nodejs.org/docs/latest-v11.x/api/buffer.html#buffer_buf_entries



相關用法


注:本文由純淨天空篩選整理自thesid01大神的英文原創作品 Node.js | Buffer.entries() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。