class stack

int sip=0;
String data[]=new String[6];
public synchronized void push(String str)
{
while(sip==data.length)   
{
try 
{
this.wait();
}
catch(InterruptedException e){}
}
this.notify();
System.out.println("Produced:"+str); data[sip]=str;
sip++;
}
public synchronized String pop()
{
while(sip==0) 
{
try 
{
this.wait();
}
catch(InterruptedException e){}
}
this.notify();
sip--;
return data[sip];
}
}
class Consumer implements Runnable
{
stack stackOne;
public Consumer(stack s)
{
stackOne=s;}
public  void run()
{
String strTemp=null;
for(int i=0;i<8;i++)
{
strTemp=stackOne.pop();
System.out.println("Consumed:"+strTemp);
try
{
Thread.sleep((int)(Math.random()*100));
}
catch(InterruptedException e){}
}
}
}
class Producer implements Runnable
{
stack stackOne;
public Producer(stack s)
{stackOne=s;}
public   void run()
{
String strTemp=null;
for(int i=0;i<8;i++)
{
strTemp=String.valueOf(i+1);
stackOne.push(strTemp);
try
{
Thread.sleep((int)(Math.random()*100));
}
catch(InterruptedException e){}
}
}
}public class stackTest
{
public static void main(String args[])
{
stack s1=new stack();
Runnable producer=new Producer(s1);
Runnable consumer=new Consumer(s1);
Thread p=new Thread(producer);
Thread c=new Thread(consumer);
p.start();
c.start();
}
}这个是关于生产和消费的程序..
结果应该是生产
     消费
     生产
     消费这个交替着的.可是我每次运行的结果都不一样..为什么??是程序不对..这程序是书的..

解决方案 »

  1.   

    class stack
    {
    int sip=0;
    String data[]=new String[1];
    public synchronized void push(String str)
    {
    while(sip==1)
    {
    try
    {
    this.wait();
    }
    catch(InterruptedException e){}
    }
    this.notify();
    try {
    Thread.sleep(100);
    } catch (InterruptedException e) {}
    System.out.println("Produced:"+str);data[sip]=str;
    sip++;
    }
    public synchronized String pop()
    {
    while(sip==0)
    {
    try
    {
    this.wait();
    }
    catch(InterruptedException e){}
    }
    this.notify();
    try {
    Thread.sleep(100);
    } catch (InterruptedException e) {}
    sip--;
    return data[sip];
    }
    }