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