undefiined 2019-12-07 04:15 采纳率: 50%
浏览 128
已结题

[悬赏]怎么用java模拟生产者消费者问题(可执行文件和源代码)

只要给我可执行文件至3193727533@qq.com,这些c币就送你(可执行文件(最好是.class))

  • 写回答

1条回答 默认 最新

  • .安然. 2019-12-14 17:01
    关注

    /**

    • 生产者和消费者,wait()和notify()的实现
      */
      public class Test1 {
      private static Integer count = 0;
      private static final Integer FULL = 10;
      private static String LOCK = "lock";

      public static void main(String[] args) {
      Test1 test1 = new Test1();
      new Thread(test1.new Producer()).start();
      new Thread(test1.new Consumer()).start();
      new Thread(test1.new Producer()).start();
      new Thread(test1.new Consumer()).start();
      new Thread(test1.new Producer()).start();
      new Thread(test1.new Consumer()).start();
      new Thread(test1.new Producer()).start();
      new Thread(test1.new Consumer()).start();
      }
      class Producer implements Runnable {
      @Override
      public void run() {
      for (int i = 0; i < 10; i++) {
      try {
      Thread.sleep(3000);
      } catch (Exception e) {
      e.printStackTrace();
      }
      synchronized (LOCK) {
      while (count == FULL) {
      try {
      LOCK.wait();
      } catch (Exception e) {
      e.printStackTrace();
      }
      }
      count++;
      System.out.println(Thread.currentThread().getName() + "生产者生产,目前总共有" + count);
      LOCK.notifyAll();
      }
      }
      }
      }
      class Consumer implements Runnable {
      @Override
      public void run() {
      for (int i = 0; i < 10; i++) {
      try {
      Thread.sleep(3000);
      } catch (InterruptedException e) {
      e.printStackTrace();
      }
      synchronized (LOCK) {
      while (count == 0) {
      try {
      LOCK.wait();
      } catch (Exception e) {
      }
      }
      count--;
      System.out.println(Thread.currentThread().getName() + "消费者消费,目前总共有" + count);
      LOCK.notifyAll();
      }
      }
      }
      }
      }

    Java生成exe可执行文件 可以借鉴
    https://blog.csdn.net/yefufeng/article/details/79947851

    评论

报告相同问题?

悬赏问题

  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog