- Node.js教程
- Node.js - 教程
- Node.js - 简介
- Node.js - 环境设置
- Node.js - 首次申请
- Node.js - REPL 终端
- Node.js - 命令行选项
- Node.js - 包管理器 (NPM)
- Node.js - 回调概念
- Node.js - 上传文件
- Node.js - 发送电子邮件
- Node.js - 活动
- Node.js - 事件循环
- Node.js - 事件发射器
- Node.js - 调试器
- Node.js - 全局对象
- Node.js - 控制台
- Node.js - 流程
- Node.js - 扩展应用程序
- Node.js - 包装
- Node.js - Express 框架
- Node.js - RESTful API
- Node.js - 缓冲器
- Node.js - Streams
- Node.js - 文件系统
- Node.js MySQL
- Node.js - MySQL 快速入门
- Node.js - MySQL创建数据库
- Node.js - MySQL创建表
- Node.js - MySQL Insert Into
- Node.js - MySQL Select From
- Node.js - MySQL Where 子句
- Node.js - MySQL Order By
- Node.js - MySQL Delete
- Node.js - MySQL Update
- Node.js - MySQL Join
- Node.js MongoDB
- Node.js - MongoDB 快速入门
- Node.js - MongoDB 创建数据库
- Node.js - MongoDB 创建集合
- Node.js - MongoDB Insert
- Node.js - MongoDB Find
- Node.js - MongoDB 查询
- Node.js - MongoDB 排序
- Node.js - MongoDB Delete
- Node.js - MongoDB Update
- Node.js - MongoDB Limit
- Node.js - MongoDB Join
- Node.js模块
- Node.js - 模块
- Node.js - 内置模块
- Node.js - utility 模块
- Node.js - Web 模块
Node.js - Buffer.byteOffset 属性
NodeJS Buffer.byteOffset 是 NodeJS Buffer 模块中 Buffer 类的一个属性。此属性将为您提供给定缓冲区的 byteOffset 值。
语法
以下是 NodeJS Buffer.byteOffset 属性的语法 -
Buffer.byteOffset
例
在此示例中,将创建一个缓冲区并查看 Buffer.buffer 的输出。
const buff = Buffer.from([0, 1, 2, 3, 4, 5, 6, 7, 8, 9]);
console.log("The byteoffset is :"+buff.byteOffset);
输出
The byteoffset is :112
例
在此示例中,将创建一个数组缓冲区,并从中创建一个缓冲区。稍后将使用 NodeJS byteoffset 和 NodeJS buffer.length 并获取 Int8Array 数组,如下所示。
const arrbuffer = new ArrayBuffer(16);
const mybuffer = Buffer.from(arrbuffer);
mybuffer[0] = 12;
mybuffer[1] = 15;
const byteoff = mybuffer.byteOffset;
const buff = new Int8Array(mybuffer, byteoff, mybuffer.length);
console.log(buff);
输出
Int8Array(16) [
12, 15, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0,
0, 0, 0, 0
]
12, 15, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0,
0, 0, 0, 0
]