Java.lang.Runtime.totalMemory() 方法

描述

java.lang.Runtime.totalMemory() 方法返回 Java 虚拟机中的内存总量。 此方法返回的值可能会随时间变化,具体取决于主机环境。 请注意,保存任何给定类型的对象所需的内存量可能取决于实现。


声明

以下是 java.lang.Runtime.totalMemory() 方法的声明。

public long totalMemory()

参数

NA


返回值

此方法不返回值。


异常

NA


示例

下面的例子展示了 lang.Runtime.totalMemory() 方法的使用。

package com.tutorialspoint;

public class RuntimeDemo {

   public static void main(String[] args) {

      // print the state of the program
      System.out.println("Program is starting...");

      // print the total memory
      System.out.println("" + Runtime.getRuntime().totalMemory());
   }
}

让我们编译并运行上面的程序,这将产生下面的结果 −

Program is starting...
63111168