线程间的通信方式1--共享变量(内存)
                                                            生活随笔
收集整理的這篇文章主要介紹了
                                线程间的通信方式1--共享变量(内存)
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.                        
                                多個線程共享同一份內存,就是說,一個變量可以同時被多個線程所訪問。這里要特別注意同步和原子操作的問題。
Java中最基本的同步例子。
synchronized(this) {while(isConditionFullfilled == false) {wait();}notify(); }如果覺得使用wait/notify比較麻煩,可以使用Java提供的BlockingQueue,從名字就可以看出它是一個阻塞隊列。看下面的例子。
1 public class ConsumerProducer { 2 private final int LIMIT = 10; 3 private BlockingQueue<Integer> blockingQueue = new LinkedBlockingQueue<Integer>(LIMIT); 4 5 public void produce() throws InterruptedException { 6 int value = 0; 7 while (true) { 8 blockingQueue.put(value++); 9 } 10 } 11 12 public void consume() throws InterruptedException { 13 while (true) { 14 int value = blockingQueue.take(); 15 } 16 } 17 18 }?
轉載于:https://www.cnblogs.com/ganchuanpu/p/5991409.html
總結
以上是生活随笔為你收集整理的线程间的通信方式1--共享变量(内存)的全部內容,希望文章能夠幫你解決所遇到的問題。
 
                            
                        - 上一篇: 《理解 ES6》阅读整理:函数(Func
- 下一篇: PHP中错误处理集合
