All pastes #2447629 Raw Edit

Anonymous

public unlisted java v1 · immutable
#2447629 ·published 2013-09-10 16:23 UTC
rendered paste body
for(int i = 0; i < 10; ++i) {    Thread thread = new Thread(runnableObject);    try {      thread.start();      threadPool.add(thread);    }    catch(Exception e) {      /* handle exception */    }}