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
相关用法
注:本文由纯净天空筛选整理自gekcho大神的英文原创作品 Node.js | os.totalmem() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。