Java线程和关闭钩子

当JVM正常或突然关闭时, 关闭钩子可用于执行清理资源或保存状态。执行干净的资源意味着关闭日志文件, 发送一些警报或其他内容。因此, 如果要在JVM关闭之前执行一些代码, 请使用shutdown挂钩。
JVM什么时候关闭?
在以下情况下, JVM将关闭:

  • 用户在命令提示符下按ctrl + c
  • 调用System.exit(int)方法
  • 用户注销
  • 用户关闭等
addShutdownHook(Thread hook)方法Runtime类的addShutdownHook()方法用于在虚拟机中注册线程。句法:
public void addShutdownHook(Thread hook){}

可以通过调用静态工厂方法getRuntime()获得Runtime类的对象。例如:
运行时r = Runtime.getRuntime();

工厂方法【Java线程和关闭钩子】返回类实例的方法称为工厂方法。
关机钩的简单示例
class MyThread extends Thread{ public void run(){ System.out.println("shut down hook task completed.."); } }public class TestShutdown1{ public static void main(String[] args)throws Exception {Runtime r=Runtime.getRuntime(); r.addShutdownHook(new MyThread()); System.out.println("Now main sleeping... press ctrl+c to exit"); try{Thread.sleep(3000); }catch (Exception e) {} } }

Output:Now main sleeping... press ctrl+c to exit shut down hook task completed..

注意:可以通过调用Runtime类的halt(int)方法来停止关闭序列。匿名类的关机挂钩示例相同:
public class TestShutdown2{ public static void main(String[] args)throws Exception {Runtime r=Runtime.getRuntime(); r.addShutdownHook(new Thread(){ public void run(){ System.out.println("shut down hook task completed.."); } } ); System.out.println("Now main sleeping... press ctrl+c to exit"); try{Thread.sleep(3000); }catch (Exception e) {} } }

Output:Now main sleeping... press ctrl+c to exit shut down hook task completed..

    推荐阅读