Buffer.swap64()方法是Buffer模塊中Buffer類的內置應用程序編程接口,用於就地交換緩衝區字節順序。通過將緩衝區解釋為64位數字的數組來執行交換。
用法:
Buffer.swap64()
參數:此方法不接受任何參數。
返回值:它將對緩衝區的引用返回。
引發錯誤:如果緩衝區的長度(buf.length)不是8的倍數,則拋出ERR_INVALID_BUFFER_SIZE。
以下示例說明了Node.js中Buffer.swap64()方法的使用:
範例1:
// Node.js program to demonstrate the
// Buffer.swap64() method
// Creating a buffer
const buf = Buffer.from([0x7, 0x0, 0x1,
0x1, 0x4, 0x5, 0x4, 0x6]);
// Display the buffer value
// before swap
console.log(buf);
// Using Buffer.swap64() method
buf.swap64();
// Display the result
// after swap
console.log(buf);
輸出:
<Buffer 07 00 01 01 04 05 04 06> <Buffer 06 04 05 04 01 01 00 07>
範例2:我們將研究此方法引發的錯誤
// Node.js program to demonstrate the
// Buffer.swap64() method
// Creating a buffer
const buf = Buffer.from([0x0,
0x1, 0x2, 0x3, 0x4, 0x5]);
// Display the buffer value
// before swap
console.log(buf);
try {
// Using Buffer.swap64() method
// It will throw error
buf.swap64();
// Display the result
// after swap
console.log(buf);
}
catch(e) {
console.log("Entering catch block");
// Display error
console.log(e);
}
輸出:
<Buffer 00 01 02 03 04 05> Entering catch block RangeError [ERR_INVALID_BUFFER_SIZE]:Buffer size must be a multiple of 64-bits at Buffer.swap64 (buffer.js:1059:11) at /home/runner/index.js:14:9 .......
注意:上麵的程序將通過使用node index.js
命令。
參考: https://nodejs.org/dist/latest-v13.x/docs/api/buffer.html#buffer_buf_swap64
相關用法
注:本文由純淨天空篩選整理自Rajnis09大神的英文原創作品 Node.js | Buffer.swap64() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。