java-basis Posted on 2016-05-18 | Java Biscs关于程序周期,当程序退出时执行某个方法 有时候想要在程序退出时执行某些特定的操作,比如说关闭网络连接。 1234567public static void main(String[] args) { Runtime.getRuntime().addShutdownHook(new Thread(new Runnable() { public void run() { System.out.println("In shutdown hook"); } }, "Shutdown-thread"));}