Buffer.readInt16BE()方法是Buffer類的內置應用程序編程接口,帶有in Buffer模塊,該模塊以big endian格式從緩衝區中指定的偏移量處讀取16位有符號整數。
用法:
Buffer.readInt16BE( offset )
參數:此方法接受單個參數偏移量,該偏移量指定開始寫入之前要跳過的字節數(整數)。 offset的值在0範圍內
返回值:它返回偏移量以及寫入的字節數。
範例1:
// Node.js program to demonstrate the
// Buffer.readInt16BE() method
// Create a buffer
const buf = Buffer.from([0, 3]);
// Display the result
console.log(buf.readInt16BE(0));
輸出:
3
範例2:
// Node.js program to demonstrate the
// Buffer.readInt16BE() method
// Create a buffer
const buf = Buffer.from([0, 3]);
// Display the result
console.log(buf.readInt16BE(1));
輸出:
internal/buffer.js:72 throw new ERR_OUT_OF_RANGE(type || 'offset', ^ RangeError [ERR_OUT_OF_RANGE]:The value of "offset" is out of range. It must be >= 0 andReference:https://nodejs.org/api/buffer.html#buffer_buf_readint16be_offset
相關用法
注:本文由純淨天空篩選整理自harshcooldude700大神的英文原創作品 Node.js | Buffer.readInt16BE() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。