- 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 - 流
- Node.js - 文件系统
- Node.js MySQL
- Node.js - MySQL 快速入门
- Node.js - MySQL 创建数据库
- Node.js - MySQL 创建表
- Node.js - MySQL 插入数据
- Node.js - MySQL 查询数据
- Node.js - MySQL 条件查询
- Node.js - MySQL 排序
- Node.js - MySQL 删除数据
- Node.js - MySQL 更新数据
- Node.js - MySQL 连接查询
- Node.js MongoDB
- Node.js - MongoDB 快速入门
- Node.js - MongoDB 创建数据库
- Node.js - MongoDB 创建集合
- Node.js - MongoDB 插入数据
- Node.js - MongoDB 查找数据
- Node.js - MongoDB 查询
- Node.js - MongoDB 排序
- Node.js - MongoDB 删除数据
- Node.js - MongoDB 更新数据
- Node.js - MongoDB 数据限制
- Node.js - MongoDB 连接查询
- Node.js 模块
- Node.js - 模块
- Node.js - 内置模块
- Node.js - 实用工具模块
- Node.js - Web 模块
- Node.js 有用资源
- Node.js - 快速指南
- Node.js - 有用资源
- Node.js - 讨论
NodeJS v8.deserializer.readUnit32() 方法
v8.deserializer 类的 NodeJS v8.deserializer.readUnit32() 方法用于读取一个原始的 32 位无符号整数并返回它。
Unit32 是一个 32 位无符号整数,最小值为 0,最大值为 4,294,967,295(包含)。
此方法主要用于自定义的 deserializer._readHostObject() 内部,该方法用于读取某种类型的宿主对象。
语法
以下是 NodeJS v8.deserializer.readUnit32() 方法 的语法:
v8.deserializer.readUnit32()
参数
此方法不接受任何参数。
返回值
此方法从缓冲区读取并返回原始的 32 位无符号整数值。
示例
在下面的示例中,我们尝试使用 v8.serializer.writeUnit32() 方法将原始的 32 位无符号整数写入内部缓冲区。然后,我们尝试使用 v8.deserializer.readUnit32() 方法读取内部缓冲区中存在的该原始 32 位无符号整数。
const v8 = require('v8'); const serializer = new v8.Serializer(); // Calling v8.serializer.writeUint32() serializer.writeUint32(98764567); // Calling v8.deserializer.readUint32() const deserializer = new v8.Deserializer(serializer.releaseBuffer()); console.log(deserializer.readUint32());
输出
如果我们编译并运行上述代码,则输出如下。
98764567
示例
以下是 v8.deserializer 类的 readUnit32() 方法的另一个示例。
const v8 = require('v8'); const serializer = new v8.Serializer(); console.log(serializer.releaseBuffer()); serializer.writeUint32(876543); buffer = serializer.releaseBuffer(); console.log("Internal Buffer data is:"); console.log(buffer); const deserializer = new v8.Deserializer(buffer); console.log("After deserializing, the data: "); console.log(deserializer.readUint32());
输出
<Buffer > Internal Buffer data is: <Buffer ff bf 35> After deserializing, the data: 876543
nodejs_v8_module.htm
广告