Java RunTime Example
Chapter:
Run Time
Last Updated:
17-06-2016 08:34:07 UTC
Program:
/* ............... START ............... */
public class JavaRunTimeExample {
public static void main(String args[]) {
/*
* getRuntime method is a static method. Application can not create
* instance of this class.
*/
Runtime runtime = Runtime.getRuntime();
}
}
/* ............... END ............... */
Tags
RunTime Example, Java