java-basis

Java Biscs

关于程序周期,当程序退出时执行某个方法

  • 有时候想要在程序退出时执行某些特定的操作,比如说关闭网络连接。
1
2
3
4
5
6
7
public static void main(String[] args) {
Runtime.getRuntime().addShutdownHook(new Thread(new Runnable() {
public void run() {
System.out.println("In shutdown hook");
}
}, "Shutdown-thread"));
}