位置:首頁 > 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