Java Runtime addShutdownHook()方法

java.lang.Runtime.addShutdownHook(Thread hook) 方法注册一个新的虚拟机关闭挂钩。 Java虚拟机的关闭响应于两种事件:

  • 该程序正常退出,当最后一个非守护线程退出或退出(等同于System.exit)方法被调用时,或关闭钩子是一个简单的初始化但尚未启动的线程。

  • 当虚拟机开始其关闭序列将启动所有已注册的关闭钩子在一些未指定的顺序,让他们同时运行。当所有的钩子都做完了会然后运行所有未调用的终结,如果最后确定的按出口已启用。最后,虚拟机将暂停。需要注意的是守护线程将继续关闭序列期间运行,将作为非守护线程,如果关机是通过调用exit方法启动。

1 语法

public void addShutdownHook(Thread hook)

2 参数

3 返回值

此方法不返回任何值。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java Runtime addShutdownHook()方法
 */
public class RuntimeDemo {

   // a class that extends thread that is to be called when program is exiting
   static class Message extends Thread {

      public void run() {
         System.out.println("Bye.");
      }
   }

   public static void main(String[] args) {
      try {

         // register Message as shutdown hook
         Runtime.getRuntime().addShutdownHook(new Message());

         // print the state of the program
         System.out.println("Program is starting...");

         // cause thread to sleep for 3 seconds
         System.out.println("Waiting for 3 seconds...");
         Thread.sleep(3000);

         // print that the program is closing 
         System.out.println("Program is closing...");


      } catch (Exception e) {
         e.printStackTrace();
      }
   }
}

输出结果为:

Program is starting...
Waiting for 3 seconds...
Program is closing...
Bye.

 

热门文章

优秀文章