ThreadPool 이란? 100개의 작업을 비동기적으로 처리해야할 때에, 어떤 방법을 떠올릴 수 있을까? 간단히 스레드를 100개 만들어 처리하는 코드를 작성해보자. public class ExecutorExample { public static void main(String[] args) throws ExecutionException, InterruptedException { Thread thread = new Thread(new Task()); thread.start(); System.out.println(Thread.currentThread() + " hello"); } static class Task implements Runnable { @Override public void run() { t..