码迷,mamicode.com
首页 > 编程语言 > 详细

java 23 - 3 单例模式实现Runtime类

时间:2016-10-12 14:15:14      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:


Runtime:每个 Java 应用程序都有一个 Runtime 类实例,使应用程序能够与其运行的环境相连接。
其中一个方法:
  exec(String command) 在单独的进程中执行指定的字符串命令,就是可以直接打开软件,里面填写软件名称

 1 public class RuntimeDemo {
 2 public static void main(String[] args) throws IOException {
 3 Runtime r = Runtime.getRuntime();
 4 //r.exec("winmine"); 打开扫雷软件
 5 //r.exec("notepad"); 打开记事本软件
 6 //r.exec("calc");//打开计算器
 7 //    r.exec("shutdown -s -t 10000");//定时关机。10000毫秒后关机
 8 //r.exec("shutdown -a"); //取消关机命令
 9 }
10 }
11 
12 /*
13 *    Runtime的部分源码:使用了单例模式的饿汉式
14 *
15 * class Runtime {
16 * private Runtime() {}
17 * private static Runtime currentRuntime = new Runtime();
18 * public static Runtime getRuntime() {
19 * return currentRuntime;
20 * }
21 * }
22 */

 

java 23 - 3 单例模式实现Runtime类

标签:

原文地址:http://www.cnblogs.com/LZL-student/p/5952279.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!