关于addShutdownHook()


执行以下代码:

Runtime.getRuntime().addShutdownHook(new Thread() { 
      public void run() {
           System.out.println("shutting down");
      } 
}); 

System.out.println("1"); 
System.out.println("2");

结果显示:



shutting down
 

由此可见shutdown hook 就是已经初始化但尚未开始执行的线程对象。在Runtime 注册后,如果 jvm 要停止前,这些 shutdown hook 便开始执行。

先执行了:
System.out.println("1"); 
System.out.println("2");
    JVM将关闭的时候才开始执行:

Runtime.getRuntime().addShutdownHook(new Thread() { 
      public void run() {
           System.out.println("shutting down");
      } 
});

addShutDownHook 的作用就是:在你的程序结束前,执行一些清理工作,尤其是没有UI的程序。
由API: There're couple of cases that JVM will exit, according to the Java api doc. typically: 

1. method called: System.exit(int)
2. ctrl-C pressed on the console.
3. the last non-daemon thread exits. 
4. user logoff or system shutdown.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值