JAVA 는 프로그램 에 끝 갈 고 리 를 주입 합 니 다.

1190 단어 JAVA 기초자바
public static void main(String[] args) {
    	//Runtime.getRuntime().addShutdownHook(thread);
    	//        (    ,    )               
    	//   tomcat shutdown      tomcat       
    	//   linux     kill-9                 
        Runtime.getRuntime().addShutdownHook(new Thread(){
            @Override
            public void run() {
                System.out.println("      ...");
                System.out.println("    ...");
                System.out.println("    ");
            }
        });
        Thread t = new Thread(){
            @Override
            public void run() {
                int i = 0;
                while (true){
                    //              
                    i++;
                    if(i == 20){
                        throw new RuntimeException();
                    }
                    try {
                        System.out.println("      ..."+i);
                        sleep(1_00);
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            }
        };
        t.start();
 }

좋은 웹페이지 즐겨찾기