public static void main(String args[]) { int MAX = 26; for(int i = 0; i < MAX; i++){ threads t = new threads((char)(i+65)); t.start(); t.join(); } }