- 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 Where 条件
- 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 - 讨论
Node.js - os.arch() 方法
Node.js 的 os 模块提供了一系列与操作系统相关的实用程序方法和属性。
Node.js 的 os.arch() 方法 将返回当前编译 Node.js 的计算机的 CPU 架构。
有很多 CPU 架构,例如 'x32'、'x64'、'arm'、'arm64'、's390'、's390x'、'mipsel'、'ia32'、'mips'、'ppc' 和 'ppc64'。要了解我们当前计算机的 CPU 架构,我们需要调用 os.arch() 方法。
语法
以下是 Node.js os.arch() 方法的语法:
os.arch()
参数
此方法不接受任何参数。
返回值
此方法返回当前编译 node.js 二进制文件的操作系统 CPU 架构。
OS(操作系统) CPU 架构的可能值为:
'arm'
'arm64'
'ia32'
'mips'
'mipsel'
'ppc'
'ppc64'
's390'
's390x'
'x64'
示例
在下面的程序中,我们尝试使用 os.arch() 方法打印当前系统的 CPU 架构。
const os = require('os'); const {arch} = os; console.log(os.arch());
输出
如果我们编译并运行上述程序,os.arch() 方法 将返回 'x64' 作为输出,因为此方法返回了当前计算机的 CPU 架构。
x64
示例
在下面的示例中,
我们正在执行 switch case 语句来获取计算机的 CPU 架构。
因此,switch 语句将检查每个 case 与 os.arch() 方法 的输出字符串值是否匹配,直到找到匹配项。
如果没有任何匹配项,则将打印 default 条件。
const os = require('os'); let arch = os.arch(); switch(arch) { case 'arm': console.log("This is a 32-bit 'Advanced RISC Machine'."); break; case 'arm64': console.log("This is a 64-bit 'Advanced RISC Machine'."); break; case 'ia32': console.log("This is a 32-bit 'Intel Architecture'."); break; case 'mips': console.log("This is a 32-bit Microprocessor without Interlocked Pipelined Stages"); break; case 'mipsel': console.log("This is a 64-bit Microprocessor without Interlocked Pipelined Stages"); break; case 'ppc': console.log("This is a PowerPC Architecture."); break; case 'ppc64': console.log("This is a 64-bit PowerPC Architecture."); break; case 's390': console.log("This is a 31-bit IBM System/390, the third generation of the System/360 instruction set architecture"); break; case 's390x': console.log("This is a 64-bit IBM System/390, the third generation of the System/360 instruction set architecture."); break; case 'x64': console.log("This is a 64-bit extended system."); break; case 'x32': console.log("This is a 32-bit extended system."); break; }
输出
当我们编译并运行上述程序时,os.arch() 方法的输出字符串值为 'x64'。因此,case 'x64' 匹配并执行。
This is a 64-bit extended system.
nodejs_os_module.htm
广告