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


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


buf.values()

添加於:v1.1.0

buf 值(字節)創建並返回 iterator。在for..of 語句中使用Buffer 時會自動調用此函數。

import { Buffer } from 'node:buffer';

const buf = Buffer.from('buffer');

for (const value of buf.values()) {
  console.log(value);
}
// Prints:
//   98
//   117
//   102
//   102
//   101
//   114

for (const value of buf) {
  console.log(value);
}
// Prints:
//   98
//   117
//   102
//   102
//   101
//   114const { Buffer } = require('node:buffer');

const buf = Buffer.from('buffer');

for (const value of buf.values()) {
  console.log(value);
}
// Prints:
//   98
//   117
//   102
//   102
//   101
//   114

for (const value of buf) {
  console.log(value);
}
// Prints:
//   98
//   117
//   102
//   102
//   101
//   114

相關用法


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