-2
我有一個無限循環隊列中,以測試信息:更換無限循環
//main class
boolean brun=true;
while(brun)
{
if(!queue.isEmpty()) //there's a new message
{
msg=queue.remove(0); //remove it from the queue
nqueue--;
//process the message
if(msg==0)
...
if(msg=999)
brun=false; //exit
}
}
如何使用Condition.await(),直到隊列不爲空暫停執行?
感謝你的幫助, 佩德羅
感謝baraky,爲我指出了正確的方向。 – Pedro 2013-02-18 10:54:09
很高興我能幫忙:) – BobTheBuilder 2013-02-18 10:55:22