一个生产者和多个消费者的互斥问题

运行后,消费者一直处于waiting状态,请问该怎么解决
我的想法:
生产者,因为使用list存放数据,直接添加数据就好;而消费者使用后,再删除使用数据

List licenses = (ArrayList)obj;
pool.addLicenses(licenses);

消费者线程,其中pool为数据池:

public void run() {
SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss:SS");
TimeZone t = sdf.getTimeZone();
t.setRawOffset(0);
sdf.setTimeZone(t);    synchronized(pool) {
        while (true) {
            String license = pool.getLicense();
            System.out.println("Get "+license);
        }
    }

以下是数据池,使用list存放数据

package com.traffic.cache;

import java.util.ArrayList;
import java.util.List;
public class LicensePool {

private List<String> licenses = new ArrayList<String>();

public LicensePool() {
}
public synchronized void addLicenses(List<String> license) {
    licenses.addAll(license);
    notifyAll();
}

public synchronized String getLicense(){

    while(!haveLicense()) {
        try {
            System.out.println("Waiting");
            wait();
        } catch (InterruptedException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }
    String l = licenses.get(0);
    System.out.println(l);
    licenses.remove(0);
    return l;
}

public boolean haveLicense() {
    if(licenses.isEmpty()){
        return false;
    }
    return true;
}

public int getSize() {
    return licenses.size();
}

}


ibeautiful
浏览 1880回答 2
2回答

慕工程0101907

synchronized(pool)锁没释放addLicenses是执行不了的while(!haveLicense()) {一直为空

哈士奇WWW

应该在LicensePool 内部对[quote] private List licenses[/quote]做锁同步,外面就可以不用[quote]synchronized(pool) {[/quote]
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java