/**
*单例设计模式的体现:
* Runtime ---- 运行时
* 1、每个 Java 应用程序都有一个 Runtime 类实例,使应用程序能够与其运行的环境相连接。
* 2、可以通过 getRuntime 方法获取当前运行时,使用了单例设计模式
* 3、应用程序不能创建自己的 Runtime 类实例。
*
* 方法:
* exec ---- 可以调用系统功能
*
*/
public class Demo02_Runtime {
public static void main(String[] args) throws IOException {
Runtime r = Runtime.getRuntime();
//r.exec("notepad");
r.exec("calc");
}
}
|