Node.js os.totalmem() 方法
os.totalmem() 方法是 os 模块的内置应用程序编程接口,用于获取以字节为单位的总系统内存量。
句法:
os.totalmem()
参数:此方法不接受任何参数。
返回值:此方法返回一个整数值,该值指定系统总内存量(以字节为单位)。
以下示例说明了 Node.js 中os.totalmem() 方法的使用:
示例 1:
// Node.js program to demonstrate the
// os.totalmem() method
// Import the os module
const os = require('os');
// Printing os.totalmem() method value
console.log(os.totalmem());
输出:
8502722560
示例 2:
// Node.js program to demonstrate the
// os.totalmem() method
// Import the os module
const os = require('os');
// Convert total memory to kb, mb and gb
var total_memory = os.totalmem();
var total_mem_in_kb = total_memory/1024;
var total_mem_in_mb = total_mem_in_kb/1024;
var total_mem_in_gb = total_mem_in_mb/1024;
total_mem_in_kb = Math.floor(total_mem_in_kb);
total_mem_in_mb = Math.floor(total_mem_in_mb);
total_mem_in_gb = Math.floor(total_mem_in_gb);
total_mem_in_mb = total_mem_in_mb%1024;
total_mem_in_kb = total_mem_in_kb%1024;
total_memory = total_memory%1024;
// Display memory size
console.log("Total memory: " + total_mem_in_gb + "GB "
+ total_mem_in_mb + "MB " + total_mem_in_kb
+ "KB and " + total_memory + "Bytes");
输出:
Total memory: 7GB 940MB 848KB and 0Bytes
示例 3:
// Node.js program to demonstrate the
// os.totalmem() method
// Import the os module
const os = require('os');
// Printing free memory out of total memory
console.log("Free Memory " + String(os.freemem())
+ " Bytes out of " + String(os.totalmem()) + " Bytes");
输出:
Free Memory 4161896448 Bytes out of 8502722560 Bytes
注意:以上程序将使用node index.js
命令编译运行。
参考: https://nodejs.org/api/os.html#os_os_totalmem