
Thread::isJoined 메서드는 스레드가 종료되었는지 여부를 확인합니다.
1. 스레드가 아직 실행 중인 경우, isJoined() 메서드는 false를 반환합니다.
2. 스레드가 종료된 경우, isJoined() 메서드는 true를 반환합니다.
3. join() 메서드를 호출한 후에 isJoined() 메서드를 호출한 경우, 스레드가 종료되기 전에 isJoined() 메서드가 호출된 경우 false를, 종료된 경우 true를 반환합니다.
4. join() 메서드가 블록킹 모드인 경우, 스레드가 종료될 때까지 isJoined() 메서드는 블록킹 상태를 유지합니다.
예를 들어, 다음 코드를 살펴보겠습니다.
#hostingforum.kr
java
public class Main {
public static void main(String[] args) {
Thread thread = new Thread(() -> {
System.out.println("스레드가 종료되기 전에 isJoined() 메서드가 호출되었습니다.");
});
// 스레드가 종료되기 전에 isJoined() 메서드가 호출된 경우
System.out.println("스레드가 종료되기 전에 isJoined() 메서드가 호출되었습니다. : " + thread.isAlive());
System.out.println("스레드가 종료되기 전에 isJoined() 메서드가 호출되었습니다. : " + thread.isInterrupted());
// 스레드가 종료된 경우
thread.join();
System.out.println("스레드가 종료된 경우 : " + thread.isAlive());
System.out.println("스레드가 종료된 경우 : " + thread.isInterrupted());
}
}
이 코드를 실행하면 스레드가 종료되기 전에 isJoined() 메서드가 호출된 경우 false를, 종료된 경우 true를 반환하는 것을 확인할 수 있습니다.
2025-04-01 10:12