多线程编程

多线程编程

0x01 生产者和消费者问题

1.BlockingQueue 阻塞队列实现

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// 生产者
class Producer implements Runnable {
private final BlockingQueue<Integer> queue;

public Producer(BlockingQueue queue) {
this.queue = queue;
}

@Override
public void run() {
while (true) {
try {
queue.put(produce());
System.out.println(Thread.currentThread().getName() + " put a message, total = " + queue.size());
Thread.sleep(3000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}

private int produce() {
int x = (int) (Math.random() * 10);
System.out.println(Thread.currentThread().getName() + " put: " + x);
return x;
}
}
阅读更多

Java内存模型JMM

Java内存模型

java内存模型(Java Memory Model,JMM)是java虚拟机规范定义的。

0x01.主内存与工作内存

java内存模型规定了所有的变量都存储在住内存。每条线程还有自己的工作内存,线程的工作内存中保存了被该线程使用到的主内存中的变量的拷贝。线程对变量的所有操作都必须在工作内存中进行,而不能直接读写主内存中的变量。不同线程之间也无法直接访问对方工作内存中的变量,线程间变量传递均需要通过主内存来完成。当多个线程操作的变量涉及到同一个主内存区域,将可能导致各自的工作线程数据不一致,这样就导致变量同步回主内存的时候可能冲突导致数据丢失。

阅读更多
Your browser is out-of-date!

Update your browser to view this website correctly.&npsb;Update my browser now

×