1. 설명
두 스레드 모두 잠금을 획득하기 위해 lockInterruptously를 사용합니다. 스레드 A가 잠금을 획득하면 스레드 B는 스레드 B의 대기 프로세스를 중단할 수만 있습니다.
2. 사용 참고 사항
lockInterruptously() 선언에서 예외가 발생하므로 lock.lockInterruptously()는try 블록 또는 lockInterruptously()를 호출하는 메서드 외부에 배치되어야 합니다. InterruptedException이 다음과 같다고 선언합니다. 던져 .
3. 예시
public void method() throws InterruptedException { lock.lockInterruptibly(); try { //..... } finally { lock.unlock(); } }
위 내용은 Java에서 lockInterruptible을 사용하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!