标签:latch ant http cond blog down ref log unp
线程间通信的几种方式:
1.共享内存
2.消息传递
Java中的线程通信的方式有如下:
1.volatile关键字 实现共享变量
2.Object类的wait() notify()notifyAll()方法
3.CountDownLatch 并发组件 中国的wait() 和down()方法
4.ReentrantLock和Condition 结合使用
5.LockSupport 类中的park()和unpark()方法
参考地址:https://blog.csdn.net/jisuanji12306/article/details/86363390
标签:latch ant http cond blog down ref log unp
原文地址:https://www.cnblogs.com/gabriel-y/p/12516487.html