Download RunProblemThreads.java Copy to Clipboard
package basicExamples; public class RunProblemThreads { public static void main(String[] args) { for(int i=0;i<20;i++) { ProblemThread t = new ProblemThread(i); t.start(); } } }