码迷,mamicode.com
首页 > 其他好文 > 详细

Buffer.from(arrayBuffer[, byteOffset[, length]])

时间:2018-11-05 12:54:12      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:[1]   EDA   ons   The   内存分配   分配   err   ges   share   

Buffer.from(arrayBuffer[, byteOffset[, length]])


  • arrayBuffer - 一个 TypedArray 或 new ArrayBuffer() 的 .buffer 属性

  • byteOffset {Number} 默认:0

  • length {Number} 默认:arrayBuffer.length - byteOffset

当传递的是 TypedArray 实例的 .buffer 引用时,这个新建的 Buffer 将像 TypedArray 那样共享相同的内存分配。

const arr = new Uint16Array(2);
arr[0] = 5000;
arr[1] = 4000;

const buf = Buffer.from(arr.buffer); // shares the memory with arr;

console.log(buf);
// Prints: <Buffer 88 13 a0 0f>

// changing the TypedArray changes the Buffer also
arr[1] = 6000;

console.log(buf);
// Prints: <Buffer 88 13 70 17>

选填的 byteOffset 和 length 参数指定一个将由 Buffer 共享的 arrayBuffer 中的内存范围。

const ab = new ArrayBuffer(10);
const buf = Buffer.from(ab, 0, 2);
console.log(buf.length);
// Prints: 2

如果 arrayBuffer 不是一个有效的 ArrayBuffer 则抛出一个 TypeError 错误。

Buffer.from(arrayBuffer[, byteOffset[, length]])

标签:[1]   EDA   ons   The   内存分配   分配   err   ges   share   

原文地址:https://www.cnblogs.com/lalalagq/p/9908493.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!