单例模式使用例子
/** * @param args * @throws IOException */ public static void main(String[] args) throws IOException { Runtime r = Runtime.getRuntime(); //获取运行时对象 //r.exec("shutdown -s -t 300"); //关闭 r.exec("shutdown -a"); //注销 }
单例模式使用例子
/** * @param args * @throws IOException */ public static void main(String[] args) throws IOException { Runtime r = Runtime.getRuntime(); //获取运行时对象 //r.exec("shutdown -s -t 300"); //关闭 r.exec("shutdown -a"); //注销 }
相关课程