All pastes #2447621 Raw Edit

Anonymous

public unlisted java v1 · immutable
#2447621 ·published 2013-09-10 16:17 UTC
rendered paste body
for(int i = 0; i < 10; ++i) {    threadPool.add(new Thread(runnableObject)); }for(int i = 0; i < 10; ++i) {   Thread t = new Thread(threadPool.get(i));   t.start();}