日期:2014-05-20  浏览次数:20837 次

求指教如何唤醒wait方法下的特定线程
Java中似乎没有提供唤醒特定线程的方法,无论是notify函数还是notifyall()函数,这里如果想按照特定顺序唤醒线程,或者唤醒特定线程的话,请问有什么方法没?

 最好能举个代码例子吧,谢谢了!

------解决方案--------------------
http://bbs.csdn.net/topics/50035854
------解决方案--------------------
用wait、notify是可以解决的啊。你可以每个线程定义一个锁对象。
------解决方案--------------------
使用ReentrantLock配合多个condition来达到唤醒指定线程的目的,将唤醒目标 condition 与thread 做关联,建立联系,找到thread的instance就可以找到thread的监视对象condition.


import java.util.Map;
import java.util.Map.Entry;
import java.util.Set;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.locks.Condition;
import java.util.concurrent.locks.ReentrantLock;

public class NotifySpecfiedThread {

    private static final Map<Thread, Condition> notifyRelationship = new ConcurrentHashMap<Thread, Condition>();
    private static final ReentrantLock locker = new ReentrantLock(false);

    /**
     * @param args
     * @throws InterruptedException
     */
    public static void main(String[] args) throws InterruptedException {
        final int waitThreadNumber = 10;
        for (int i = 1; i <= waitThreadNumber; i++) {
            final Thread t = new WaitThreadTest();
            notifyRelationship.put(t, locker.newCondition());
        }
        final Set<Thread> threads = notifyRelationship.keySet();
        for (final Thread t : threads) {
            t.start();
        }

        new NotifyThreadTest().join();
    }

    static class WaitThreadTest extends Thread {
        public WaitThreadTest() {
        }

        /**
         * notify the specified thread using different condition and lock with
         * the same ReentrantLock instance
         */
        public void run() {
            locker.lock();