为什么不能唤醒这个线程

时间:2013-08-24 02:30:47

标签: java multithreading wakeup

我想测试Thread.sleep()方法,我发现了一件有趣的事情.. 当我调用main()方法时,控制台将打印“UserA sleep ...”和“UserA awaking ...”,这意味着程序被唤醒,但是当我使用junit方法运行与main相同的代码时( )方法,它不会打印“UserA醒来......”......我将不胜感激任何人都可以解释它。

package com.lmh.threadlocal;

import org.junit.Test;

public class ThreadTest {

    public static void main(String [] args) {
        new Thread(new UserA()).start();
    }
    @Test
    public void testWakeup(){
        new Thread(new UserA()).start();
    }

}

class UserA implements Runnable{
    @Override
    public void run() {
        try {
            System.out.println("UserA sleeping...");
            Thread.sleep(1000);
            System.out.println("UserA waking...");
        } catch (InterruptedException e) {
            e.printStackTrace();
        }

    }
}

1 个答案:

答案 0 :(得分:2)

我的猜测是JUnit在睡眠结束前正在拆除测试,因为测试执行线程在睡眠结束前退出测试方法。尝试

@Test
public void testWakeup() throws Exception {
    Thread t = new Thread(new UserA());
    t.start();
    t.join();
}