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


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


Buffer.readUInt8()方法用於從Buffer對象讀取一個無符號的8位整數。

用法:

buffer.readUInt8( offset )

參數:此方法接受單個參數偏移量,該偏移量指定緩衝區對象的位置。它表示開始讀取之前要跳過的字節數。 offset的值介於0到buffer.length-1之間。默認值為0。


返回值:它返回偏移量指定的整數值。

範例1:

// Node.js program to demonstrate the 
// buffer.readUInt8() method  
const ob=Buffer.from([1, 2, 3]); 
  
// It reads the first value 
console.log(ob.readUInt8(0)); 
  
// It reads the second value 
console.log(ob.readUInt8(1)); 
  
// It throws an error 
console.log(ob.readUInt8(4));

輸出:

1
2
RangeError [ERR_OUT_OF_RANGE]:The value of "offset" is out of range.
It must be >= 0 and <= 2. Received 3
    at boundsError (internal/buffer.js:53:9)
    at Buffer.readUInt8 (internal/buffer.js:141:5)


範例2:

// Node.js program to demonstrate the 
// buffer.readUInt8() method  
const ob1 = Buffer.from([0X32, 0X44, 0X48]); 
  
// It returns the first value 
console.log(ob1.readUInt8(0)); 
  
// It returns the third value 
console.log(ob1.readUInt8(2)); 
const t = Buffer.from("abc"); 
  
// It returns the ASCII value of 'a' 
console.log(t.readUInt8(0));

輸出:

68
72
97

注意:上麵的程序將通過使用node index.js命令。

參考: https://nodejs.org/api/buffer.html#buffer_buf_readuint8_offset



相關用法


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