[问题] Thread Debug问题

楼主: wu110011 (不下棋)   2016-03-09 20:32:20
IDE是Eclipse,语言是JAVA,Release下执行,
a的结果是5,确定是有至run()函式中执行,可是在Debug模式下,
却无法跳至run()函式中,似乎 跟mthread.join();这行有关,
请问有人知道为什么吗?
public class mythread implements Runnable{
public static int a = 0;
public void run() {
for (int k = 0; k < 5; k++) {
a = a + 1;
}
}
public static void main(String[] args) throws Exception {
Runnable r = new mythread();
Thread mthread = new Thread(r);
mthread.start();
mthread.join();
System.out.println(a);
}
}
作者: cowbaying (是在靠北喔)   2016-03-11 09:29:00
去设定到中断点?
作者: dream1124 (全新开始)   2016-03-11 23:10:00
程式没问题啊,你是不是有中断点在run里面中断了执行绪http://stackoverflow.com/a/9903421/3754778
作者: lane9449 (涟漪)   2016-03-14 07:26:00
好像中断点没设好

Links booklink

Contact Us: admin [ a t ] ucptt.com