5
在調試多線程的java程序,我把斷點。啓動方法調用後,控制器不會運行,您可以讓我知道調試過程。日食Java多線程程序的調試
示例代碼
class Test extends Thread {
public static void main(String[] args) {
try {
Thread t = new Thread(new Test());
t.start();
t.start();
} catch (Exception e) {
System.out.print("e ");
}
}
public void run() {
for(int i = 0; i < 2; i++)
System.out.print(Thread.currentThread().getName() + " ");
}
}
請更明確或提供一些代碼。 – GGrec