자바 병행 프로 그래 밍 학습 의 Future Task
2106 단어 자바
자바 병행 프로 그래 밍 학습 의 세 가지 스 레 드 시작 방식 에서 언급 한 적 이 있 습 니 다.주요 한 방법 은 다음 과 같다.
public class FutureTaskDemo {
static class Thread1 implements Callable {
@Override
public Object call() throws Exception {
System.out.println("before fun");
fun();
System.out.println("after fun");
return null;
}
public void fun() {
while (true) {
}
}
}
public static void main(String[] args) {
Thread1 thread1 = new Thread1();
FutureTask futureTask = new FutureTask(thread1);
Thread thread = new Thread(futureTask);
thread.start();
try {
Thread.sleep(1000);
System.out.println("cancel:" + futureTask.cancel(true));
Thread.sleep(1000);
System.out.println("isCancelled:" + futureTask.isCancelled());
System.out.println("isDone:" + futureTask.isDone());
System.out.println(futureTask.get());
} catch (InterruptedException e) {
System.out.println("InterruptedException");
} catch (ExecutionException e) {
System.out.println("ExecutionException");
} catch (CancellationException e) {
System.out.println("CancellationException");
}
}
}
실행 결 과 는 다음 과 같 습 니 다.작업 이 취소 되 었 기 때문에 CancellationException 이상 을 던 집 니 다.주의해 야 할 것 은 이때 thread 1 스 레 드 가 달리 고 있 습 니 다.isCanceled 와 isDone 은 true 로 돌아 갑 니 다.cancel 은 임 무 를 진정 으로 끝 낼 수 없습니다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.