Java Runtime getRuntime()方法
java.lang.Runtime.getRuntime() 方法返回与当前Java应用程序相关的运行时对象。大多数Runtime类的方法是实例方法,必须相对于当前的运行时对象被调用。
1 语法
public static Runtime getRuntime()
2 参数
无
3 返回值
此方法返回与当前Java应用程序相关的运行时对象。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* Java Runtime getRuntime()方法
*/
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
热门文章
优秀文章