Your Ad Here
首页 | 编程语言 | 网站建设 | 游戏天堂 | 冲浪宝典 | 网络安全 | 操作系统 | 软件时空 | 硬件指南 | 病毒相关 | IT 认证
软讯网络 > 编程语言 > Java > Runtime.getRuntime().addShutdownHook()的使用
【标  题】:Runtime.getRuntime().addShutdownHook()的使用
【关键字】:Runtime.getRuntime,.addShutdownHook
【来  源】:http://www.cublog.cn/u/19595/showart.php?id=121581

Runtime.getRuntime().addShutdownHook()的使用

Your Ad Here
Runtime.getRuntime().addShutdownHook(Thread);
//addShutdownHook是指,增加JVM停止时要做处理事件。当JVM停止时,就会把之前增加的这些HOOK逐个运行。
 
运行这个例子可以简单体会到它的作用.
package Thread;
public class Thread1 extends Thread{
  public void run() {
    int i=0;
    while(i<10){
      try {
        Thread.sleep(2000);
      }
      catch (InterruptedException ex) {
      }
      System.out.println("~Thread 1~");
      i++;
    }
  }
}
 
package Thread;
public class Thread2 extends Thread{
  public void run() {
    int i=0;
    while(i<10){
      try {
        Thread.sleep(1000);
      }
      catch (InterruptedException ex) {
      }
      System.out.println("~Thread 2~");
      i++;
    }
  }
}
 
package Thread;
public class Thread3 extends Thread{
  public void run(){
    System.out.println("---end---");
  }
}
 
package Thread;
public class  addShutdownHookTest{
  public static void main(String[] args) {
    Runtime.getRuntime().addShutdownHook(new Thread3());
    Thread1 t1 = new Thread1();
    t1.start();
    Thread2 t2 = new Thread2();
    t2.start();
  }
}
 
以下是jdk 1.4.2的解释.有时间慢慢翻译去.

addShutdownHook

public void addShutdownHook(Thread hook)
Registers a new virtual-machine shutdown hook.

The Java virtual machine shuts down in response to two kinds of events:

  • The program exits normally, when the last non-daemon thread exits or when the exit (equivalently, System.exit) method is invoked, or

  • The virtual machine is terminated in response to a user interrupt, such as typing ^C, or a system-wide event, such as user logoff or system shutdown.

A shutdown hook is simply an initialized but unstarted thread. When the virtual machine begins its shutdown sequence it will start all registered shutdown hooks in some unspecified order and let them run concurrently. When all the hooks have finished it will then run all uninvoked finalizers if finalization-on-exit has been enabled. Finally, the virtual machine will halt. Note that daemon threads will continue to run during the shutdown sequence, as will non-daemon threads if shutdown was initiated by invoking the exit method.

Once the shutdown sequence has begun it can be stopped only by invoking the halt method, which forcibly terminates the virtual machine.

Once the shutdown sequence has begun it is impossible to register a new shutdown hook or de-register a previously-registered hook. Attempting either of these operations will cause an IllegalStateException to be thrown.

Shutdown hooks run at a delicate time in the life cycle of a virtual machine and should therefore be coded defensively. They should, in particular, be written to be thread-safe and to avoid deadlocks insofar as possible. They should also not rely blindly upon services that may have registered their own shutdown hooks and therefore may themselves in the process of shutting down.

Shutdown hooks should also finish their work quickly. When a program invokes exit the expectation is that the virtual machine will promptly shut down and exit. When the virtual machine is terminated due to user logoff or system shutdown the underlying operating system may only allow a fixed amount of time in which to shut down and exit. It is therefore inadvisable to attempt any user interaction or to perform a long-running computation in a shutdown hook.

Uncaught exceptions are handled in shutdown hooks just as in any other thread, by invoking the uncaughtException method of the thread's ThreadGroup object. The default implementation of this method prints the exception's stack trace to System.err and terminates the thread; it does not cause the virtual machine to exit or halt.

In rare circumstances the virtual machine may abort, that is, stop running without shutting down cleanly. This occurs when the virtual machine is terminated externally, for example with the SIGKILL signal on Unix or the TerminateProcess call on Microsoft Windows. The virtual machine may also abort if a native method goes awry by, for example, corrupting internal data structures or attempting to access nonexistent memory. If the virtual machine aborts then no guarantee can be made about whether or not any shutdown hooks will be run.

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")
Since:
1.3
See Also:
removeShutdownHook(java.lang.Thread), halt(int), exit(int)
Servlet与JSP隐含对象的对应关系:【上一篇】
Lucene 2.0版发布:【下一篇】
【相关文章】
没有相关文章
【随机文章】
  • CorelDRAW 10简介(二)
  • 高极检索技术
  • 为爱你是怎么想的?
  • C#编程规范(2)
  • 万象幻境网管专家普及版密码算法 (3千字)
  • Oracle数据库联机日志文件丢失处理方法(2)
  • [收藏]Server Push详解
  • sql server存储过程(1)
  • 最近太忙了要准备gre了好久没有新文章了
  • RHCE and RHCT Exam Preparation Guide
  • 【相关评论】
    没有相关评论
    【发表评论】
    姓名:
    邮件:
    随机码*
    评论*
          
    |  首 页  |  版权声明  |  联系我们   |  网站地图  |
    CopyRight © 2004-2007 bbb软讯网络 All Rigths Reserved.