我一直在研究以下代码:
public class MyStuff {
public static void main(String[] args)throws IOException {
//System.out.println("From Test");
ControlGack gack = new ControlGack();
gack.setVisible(true);
MainWindow mW = new MainWindow();
mW.run(null);
Client c = new Client();
try {
c.run(null);
} catch (IOException e) {
e.printStackTrace();
}
System.out.print("Stupid");
}
}
有MainWindow
一个 while 循环,它只是在程序运行时重复。如何开始Client
课程并与程序的其余部分同时运行?