Buffer.writeDoubleLE()方法是Buffer模塊中Buffer類的內置應用程序編程接口,該接口將值以指定的字節序格式以指定的偏移量寫入緩衝區。請注意,該值必須是有效的64位double。
用法:
Buffer.writeDoubleLE(value, offset)
參數:此方法接受上麵和下麵描述的兩個參數:
- 值:此參數保存要寫入緩衝區的數字。
- 抵消:此參數保存開始寫入之前要跳過的字節數(整數)。
返回值:它返回偏移量以及寫入的字節數。
範例1:
// Node.js program to demonstrate the
// Buffer.writeDoubleLE() method
// Create a buffer
const buf = Buffer.allocUnsafe(8);
// Use writeDoubleLE() method
buf.writeDoubleLE(123.456, 0);
// Display the buffer value
console.log(buf);
輸出:
<Buffer 77 be 9f 1a 2f dd 5e 40>
範例2:
// Node.js program to demonstrate the
// Buffer.writeDoubleLE() method
// Create a buffer
var buf = Buffer.allocUnsafe(16);
// Use writeDoubleLE() method
buf.writeDoubleLE(0xcafebabe, 4);
// Display the buffer value
console.log(buf);
輸出:
<Buffer 28 83 db 7c 00 00 c0 57 d7 5f e9 41 00 00 00 00>
參考:https://nodejs.org/api/buffer.html#buffer_buf_writedoublele_value_offset
相關用法
注:本文由純淨天空篩選整理自harshcooldude700大神的英文原創作品 Node.js | Buffer.writeDoubleLE() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。