7576777879808182838485
for (int i = 0; i < 30; ++i) { tasks.add(new DoSomething()); } for (DoSomething doSomething : tasks) { executorService.execute(doSomething); } for (DoSomething doSomething : tasks) { assert !doSomething.isReady(); assert !doSomething.isExecuted();
5859606162636465666768
7677787980818283848586