java学习(多线程)

public class Box {
//定义一个成员变量,表示第x瓶奶
private int milk;
//定义一个成员变量,表示奶箱的状态
private boolean state = false;

//提供存储牛奶和获取牛奶的操作
public synchronized void put(int milk) {
    //如果有牛奶,等待消费
    if(state) {
        try {
            wait();
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }

    //如果没有牛奶,就生产牛奶
    this.milk = milk;
    System.out.println("送奶工将第" + this.milk + "瓶奶放入奶箱");

    //生产完毕之后,修改奶箱状态
    state = true;

    //唤醒其他等待的线程
    notifyAll();
}

public synchronized void get() {
    //如果没有牛奶,等待生产
    if(!state) {
        try {
            wait();
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }

    //如果有牛奶,就消费牛奶
    System.out.println("用户拿到第" + this.milk + "瓶奶");

    //消费完毕之后,修改奶箱状态
    state = false;

    //唤醒其他等待的线程
    notifyAll();
}

}

public class Producer implements Runnable {
private Box b;

public Producer(Box b) {
    this.b = b;
}

@Override
public void run() {
    for(int i=1; i<=30; i++) {
        b.put(i);
    }
}

}

public class Customer implements Runnable {
private Box b;

public Customer(Box b) {
    this.b = b;
}

@Override
public void run() {
    while (true) {
        b.get();
    }
}

}

public class BoxDemo {
public static void main(String[] args) {
//创建奶箱对象,这是共享数据区域
Box b = new Box();

    //创建生产者对象,把奶箱对象作为构造方法参数传递,因为在这个类中要调用存储牛奶的操作
    Producer p = new Producer(b);
    //创建消费者对象,把奶箱对象作为构造方法参数传递,因为在这个类中要调用获取牛奶的操作
    Customer c = new Customer(b);

    //创建2个线程对象,分别把生产者对象和消费者对象作为构造方法参数传递
    Thread t1 = new Thread(p);
    Thread t2 = new Thread(c);

    //启动线程
    t1.start();
    t2.start();
}

}

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值