Java中Runtime.addShutdownHook用法

版权声明:本文为博主原创文章,转载请注明出处:http://blog.jerkybible.com/2016/10/17/Java中Runtime-addShutdownHook用法/

访问原文「Java中Runtime.addShutdownHook用法

版权声明:本文为博主原创文章,转载请注明出处,谢谢!

Runtime.addShutdownHook解释

如果你想在jvm关闭的时候进行内存清理、对象销毁等操作,或者仅仅想起个线程然后这个线程不会退出,你可以使用Runtime.addShutdownHook。

这个方法的作用就是在JVM中增加一个关闭的钩子。当程序正常退出、系统调用 System.exit方法或者虚拟机被关闭时才会执行系统中已经设置的所有钩子,当系统执行完这些钩子后,JVM才会关闭。所谓钩子,就是一个已初始化但并不启动的线程。JVM退出通常通过两种事件。

  • 程序正常退出,例如最后一个非守护进程退出、使用System.exit()退出等
  • 程序异常退出,例如使用Ctrl+C触发的中断、用户退出或系统关闭等系统事件等 该方法的说明如下,详细说明参见官方文档
    1
    2
    3
    4
    5
    6
    7
    8
    9
    void java.lang.Runtime.addShutdownHook(Thread hook)
    Parameters:
    hook - An initialized but unstarted Thread object
    Throws:
    IllegalArgumentException - If the specified hook has already been registered, or if it can be determined that the hook is already running or has already been run
    IllegalStateException - If the virtual machine is already in the process of shutting down
    SecurityException - If a security manager is present and it denies RuntimePermission("shutdownHooks")

Runtime.addShutdownHook示例

下面是一个简单的示例代码。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
public class ShutdownHookDemo {
public static void main(String[] args) {
Thread clearHook = new Thread() {
public void run() {
System.out.println("Run clearHook...");
}
};
Runtime.getRuntime().addShutdownHook(clearHook);
Runnable task1 = new Runnable() {
public void run() {
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println("Run task1...");
}
};
Runnable task2 = new Thread() {
public void run() {
try {
Thread.sleep(500);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println("Run task2...");
}
};
task1.run();
task2.run();
}
}

代码运行结果如下。

1
2
3
Run task1...
Run task2...
Run clearHook...

Runtime.addShutdownHook总结

并没有什么好总结的,需要的赶紧用起来吧!

Jerky Lu wechat
欢迎加入微信公众号