static Thread startThread(S name, Runnable r) { Thread t = new Thread(r, name); t.start(); ret t; }