네 가지 스 레 드 탱크 유형

ExecutorService threadPool = Executors.newFixedThreadPool(5);
ExecutorService threadPool4 = Executors.newSingleThreadExecutor();
ExecutorService threadPool2 = Executors.newCachedThreadPool();
ExecutorService threadPool3 = Executors.newScheduledThreadPool(5);

앞의 두 개의 크기 가 제한 되 어 있 습 니 다. 첫 번 째 스 레 드 maximum PoolSize 는 5 이 고 두 번 째 는 1 입 니 다. 두 번 째 크기 는 무한 합 니 다. new Cached ThreadPool 은 차단 대기 열 이 고 new Scheduled ThreadPool 은 우선 대기 열 입 니 다.

좋은 웹페이지 즐겨찾기