线程同步有几种方法_线程同步和异步的区别

线程同步有几种方法_线程同步和异步的区别JAVA中线程同步的方法(7种)汇总#public class Main { public static void main(String[] args) throws Exception { // 架设商家的煎饼摊子上只能摆4个煎饼 final Block

JAVA中线程同步的方法(7种)汇总#   public class Main { public static void main(String[] args) throws Exception { // 架设商家的煎饼摊子上只能摆4个煎饼 final BlockingQueue<String> m = new ArrayBlockingQueue<>(4); // 开启线程——模拟商家不停做煎饼 new Thread(new Runnable() { @Override public void run() { int count = 1;// 生产的煎饼总数 while (true) { try { m.put(“煎饼” + count); System.out.println(“做好了煎饼” + count); count++; Thread.sleep(4000); //休息4S } catch (InterruptedException e) { e.printStackTrace(); } } } }).start(); // 不停的创建买家来买煎饼 while (true) { new Thread(new Runnable() { @Override public void run() { try { System.out.println(Thread.currentThread()+”来买煎饼了”); System.out.println(Thread.currentThread()+”买到了” + m.take()); } catch (InterruptedException e) { e.printStackTrace(); } } }).start(); Thread.sleep(2000); } } }

2024最新激活全家桶教程,稳定运行到2099年,请移步至置顶文章:https://sigusoft.com/99576.html

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。 文章由激活谷谷主-小谷整理,转载请注明出处:https://sigusoft.com/24678.html

(0)
上一篇 2024年 9月 14日
下一篇 2024年 9月 14日

相关推荐

关注微信