IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 游戏开发 -> Java多线程之生产者消费者模型案例 -> 正文阅读

[游戏开发]Java多线程之生产者消费者模型案例

案例一

//写一个模拟汽车生产流水线的程序
//1. 要求生产 30 辆车,其有生产序号, 名称
//在生产前,检查前面生产的产品是否已被取出,如未取出,则不能生产
//在设置生产序号和名称之前休眠 20ms
//生产好的汽车放到流水线上
//2. 装运工把在流水线生产好的汽车取出,输出汽车序号和名称信息
//要求输出的生产序号和名称相一致
public class MainClass {
    public static void main(String[] args) {
        Car car = new Car();
        CarProduction carProduction = new CarProduction(car);
        CarConsumption carConsumption = new CarConsumption(car);
        new Thread(carConsumption).start();
        new Thread(carProduction).start();
    }
}

class CarProduction implements Runnable {

    private Car car;

    public CarProduction() {
    }

    public CarProduction(Car car) {
        this.car = car;
    }

    @Override
    public synchronized void run() {
        for (int i = 1; i <= 30; i++) {
            try {
                Thread.sleep(20);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            if (i % 2 == 0) {
                car.set("汽车" + i, i);
            } else {
                car.set("卡车" + i, i);
            }
        }
    }
}

class CarConsumption implements Runnable {
    private Car car;

    public CarConsumption() {
    }

    public CarConsumption(Car car) {
        this.car = car;
    }

    @Override
    public synchronized void run() {
        for (int i = 1; i <= 100; i++) {
            try {
                Thread.sleep(20);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }

            car.get();
        }
    }
}

class Car {
    private String name;
    private int id;

    private boolean flag = false;

    public Car() {
    }

    public Car(String name, int id) {
        this.name = name;
        this.id = id;
    }

    public synchronized void get() {
        if (!flag) {
            try {
                super.wait();
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }

        System.out.println(this.name + "->" + this.id);

        flag = false;
        super.notify();
    }

    public synchronized void set(String name, int id) {
        if (flag) {
            try {
                super.wait();
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }

        this.name = name;

        try {
            Thread.sleep(10);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }

        this.id = id;

        flag = true;
        super.notify();
    }
}

在这里插入图片描述

案例二

三个生产商与三个消费者共用一个仓库,生产商会不断的生产商品,消费者同样也在不断的消费,但当仓库满仓时,生产商停止生产,但消费者同时还在不断的消费,当仓库有空闲仓位时,生产商继续生产。同样消费者也是,当仓库没有商品时,消费者等生产商生产出商品后,才继续消费。

public class MainClass {
    public static void main(String[] args) {
        Store store = new Store();
        new Thread(new Consumer("张三", store)).start();
        new Thread(new Consumer("李四", store)).start();
        new Thread(new Consumer("王五", store)).start();
        new Thread(new Producer("第一工厂", store)).start();
        new Thread(new Producer("第二工厂", store)).start();
    }
}

class Store {
    // 仓位最多为10个
    private final int MAX = 10;
    private int num = 0;

    public synchronized void produce(Producer producer) throws InterruptedException {
        while (num == MAX) {
            System.out.println("仓库已满 ,请等待空位");
            wait();
        }
        ++num;
        System.out.println(producer.name + " 生产了后,仓库现存 :" + num + "个产品");
        notify();// 唤醒其它进程
    }

    public synchronized void consumer(Consumer consumer) throws InterruptedException {
        while (num == 0) {
            System.out.println("仓库空仓,请等待产品入库");
            wait();
        }
        --num;
        System.out.println(consumer.name + " 消费后,还剩 :" + num + "个产品");
        notify();// 唤醒其它进程
    }
}

class Producer implements Runnable {
    String name;
    Store store;

    public Producer(String name, Store store) {
        this.name = name;
        this.store = store;
    }

    @Override
    public void run() {
        while (true) {
            try {
                Thread.sleep((long) (Math.random() * 1000));
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            try {
                store.produce(this);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
    }
}

class Consumer implements Runnable {
    String name;
    Store store;

    public Consumer(String name, Store store) {
        this.name = name;
        this.store = store;
    }

    @Override
    public void run() {
        while (true) {
            try {
                Thread.sleep((long) (Math.random() % 30 * 1000));
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            try {
                store.consumer(this);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
    }
}

在这里插入图片描述

案例3

两人从同一银行账户取钱

class UserGetMoney implements Runnable{
    private static int sum = 2000;
    private int money = 0;

    public UserGetMoney(int money) {
        this.money = money;
    }

    public synchronized void take(int k) {
        int temp = sum;
        temp -= k;
        try {
            Thread.sleep((int) (100 * Math.random()));
        } catch (InterruptedException e) {
        }
        sum = temp;
        System.out.println(Thread.currentThread() + "sum = " + sum);
    }

    public void run() {
        for (int i = 1; i <= 4; i++) {
            take(money);
        }
    }
}


public class BankTest {
    public static void main(String[] args) {
        UserGetMoney u = new UserGetMoney(100);
        new Thread(u).start();
        new Thread(u).start();
    }
}

在这里插入图片描述

  游戏开发 最新文章
6、英飞凌-AURIX-TC3XX: PWM实验之使用 GT
泛型自动装箱
CubeMax添加Rtthread操作系统 组件STM32F10
python多线程编程:如何优雅地关闭线程
数据类型隐式转换导致的阻塞
WebAPi实现多文件上传,并附带参数
from origin ‘null‘ has been blocked by
UE4 蓝图调用C++函数(附带项目工程)
Unity学习笔记(一)结构体的简单理解与应用
【Memory As a Programming Concept in C a
上一篇文章           查看所有文章
加:2021-10-08 12:05:58  更:2021-10-08 12:07:05 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/28 2:43:15-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码