수호 루트에서finally 문장이 실행될 수 있는 것은 아닙니다

748 단어
프로그램에서 모든 비수호 루트가 실행되면 수호 루트는 즉시 종료됩니다. 따라서 수호 루트의finally 자구가 반드시 실행될 수 있는 것은 아닙니다. 예는 다음과 같습니다.
import java.util.concurrent.TimeUnit;

public class ThreadTest {
	public static void main(String[] args) {
		Thread t = new Thread(new ADaemon());
		t.setDaemon(true);
		t.start();
	}
}
class ADaemon implements Runnable{

	@Override
	public void run() {
		try{
			System.out.println("Starting ADaemon");
			TimeUnit.SECONDS.sleep(1);
		}catch(Exception e){
			e.printStackTrace();
		}finally{
			System.out.println("run?");
		}
	}
}

4
Starting ADaemon  //finally       
main 스레드가 종료되면 JVM은 모든 백그라운드 스레드를 즉시 종료합니다.

좋은 웹페이지 즐겨찾기