位置:首页 > Java技术 > java.lang > java.lang.Runtime.getRuntime()方法实例

java.lang.Runtime.getRuntime()方法实例

java.lang.Runtime.getRuntime() 方法返回与当前Java应用程序相关的运行时对象。大多数Runtime类的方法是实例方法,必须相对于当前的运行时对象被调用。

声明

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

public static Runtime getRuntime()

参数

  • NA

返回值

此方法返回与当前Java应用程序相关的运行时对象。

异常

  • NA

例子

下面的例子显示lang.Runtime.getRuntime()方法的使用。

package com.yiibai;

public class RuntimeDemo {

   public static void main(String[] args) {

      // print when the program starts
      System.out.println("Program starting...");

      // get the current runtime assosiated with this process
      Runtime run = Runtime.getRuntime();

      // print the current free memory for this runtime
      System.out.println("" + run.freeMemory());
   }
}

让我们来编译和运行上面的程序,这将产生以下结果:

Program starting...
62780856