A blocking queue is a special queue. Like ordinary queues in the data structure, it also follows first-in, first-out At the same time, the blocking queue is a data structure that can ensure thread safety and has the following two characteristics: when the queue is full, continuing to insert elements into the queue will block the queue until other threads take it from the queue. Remove elements; when the queue is empty, continuing to dequeue will also block the queue until other threads insert elements into the queue.
Supplement: Thread blocking means that the code will not be executed at this time, that is, The operating system will not schedule this thread to the CPU for execution at this time
import java.util.concurrent.LinkedBlockingDeque; import java.util.concurrent.BlockingDeque; public class Test { public static void main(String[] args) throws InterruptedException { //不能直接newBlockingDeque,因为它是一个接口,要向上转型 //LinkedBlockingDeque内部是基于链表方式来实现的 BlockingDeque<String> queue=new LinkedBlockingDeque<>(10);//此处可以指定一个具体的数字,这里的的10代表队列的最大容量 queue.put("hello"); String elem=queue.take(); System.out.println(elem); elem=queue.take(); System.out.println(elem); } }
Note: The put method has a blocking function, but the offer does not. Therefore, the put method is generally used (the reason why the offer method can be used is that BlockingDeque
inherits Queue
)
to print the results As shown above, after hello is printed, the queue is empty and the code will not continue to execute until elem=queue.take();
. At this time, the thread enters the blocking waiting state and nothing happens. It will not print until other threads put new elements into the queue
The producer-consumer model is developed in server development and back-end development It is a relatively common programming method and is generally used for decoupling and peak-shaving and valley-filling.
High coupling: the relationship between the two code modules is relatively high
High cohesion: the elements within a code module are closely combined with each other
Therefore, we generally pursue high cohesion and low coupling. This will speed up execution efficiency, and the producer-consumer model can be used to decouple
Let’s take the situation in real life as an example. Here are two Server: A server and B server. When A server transmits data to B, if it is transmitted directly, then either A will push data to B, or B will pull data from A. Both require A and B to interact directly, so There is a dependency relationship between A and B (the degree of coupling between A and B is relatively high). If the server needs to be expanded in the future, such as adding a C server to let A transmit data to C, then the changes will be more complicated and efficiency will be reduced. At this time, we can add a queue. This queue is a blocking queue. If A writes data to the queue and B takes it from it, then the queue is equivalent to the transfer station (or trading place), and A is equivalent to the producer (providing data). B is equivalent to the consumer (receiving data). At this time, a producer-consumer model is formed, which will make the code less coupled, more convenient to maintain, and more efficient in execution.
In the computer, the producer acts as one group of threads, and the consumer acts as another group of threads, and the trading venue can use blocking queues
In real life
The dam is a very important part of the river. If there is no dam , let’s just imagine the result: when the flood season comes, when there is a lot of water in the upper reaches, a large amount of water will pour into the lower reaches, causing floods and flooding the crops; while in the dry season, there will be very little water in the lower reaches, which may cause droughts. If there is a dam, the dam will store excess water in the dam during the flood season, close the gate to store water, and allow the upstream water to flow downstream at a certain rate to avoid a sudden wave of heavy rain from flooding the downstream, so that the downstream will not be flooded. flood. During drought periods, the dam releases previously stored water and allows the water to flow downstream at a certain rate to prevent the downstream from being too short of water. This can avoid both flooding during the flood season and drought during the dry period.
Peak: equivalent to the flood season
Valley: equivalent to the dry season
In computers
This situation is also very typical in computers, especially in server development, the gateway usually The request is forwarded to business servers, such as some product servers, user servers, merchant servers (which store merchant information), and live broadcast servers. However, because the number of requests from the Internet is uncontrollable, it is equivalent to upstream water. If a large wave of requests suddenly come, even if the gateway can handle it, many subsequent servers will collapse after receiving many requests (processing one The request involves a series of database operations, because the efficiency of database-related operations is relatively low. If there are too many requests, it cannot be processed, so it will crash)
所以实际情况中网关和业务服务器之间往往用一个队列来缓冲,这个队列就是阻塞队列(交易场所),用这个队列来实现生产者(网关)消费者(业务服务器)模型,把请求缓存到队列中,后面的消费者(业务服务器)按照自己固定的速率去读请求。这样当请求很多时,虽然队列服务器可能会稍微受到一定压力,但能保证业务服务器的安全。
import java.util.concurrent.BlockingQueue; import java.util.concurrent.LinkedBlockingQueue; public class TestDemo { public static void main(String[] args) { // 使用一个 BlockingQueue 作为交易场所 BlockingQueue<Integer> queue = new LinkedBlockingQueue<>(); // 此线程作为消费者 Thread customer = new Thread() { @Override public void run() { while (true) { // 取队首元素 try { Integer value = queue.take(); System.out.println("消费元素: " + value); } catch (InterruptedException e) { e.printStackTrace(); } } } }; customer.start(); // 此线程作为生产者 Thread producer = new Thread() { @Override public void run() { for (int i = 1; i <= 10000; i++) { System.out.println("生产了元素: " + i); try { queue.put(i); Thread.sleep(1000); } catch (InterruptedException e) { e.printStackTrace(); } } } }; producer.start(); try { customer.join(); producer.join(); } catch (InterruptedException e) { e.printStackTrace(); } } }
打印如上(此代码是让生产者通过sleep每过1秒生产一个元素,而消费者不使用sleep,所以每当生产一个元素时,消费者都会立马消费一个元素)
在学会如何使用BlockingQueue
后,那么如何自己去实现一个呢?
主要思路:
1.利用数组
2.head代表队头,tail代表队尾
3.head和tail重合后到底是空的还是满的判断方法:专门定义一个size记录当前队列元素个数,入队列时size加1出队列时size减1,当size为0表示空,为数组最大长度就是满的(也可以浪费一个数组空间用head和tail重合表示空,用tail+1和head重合表示满,但此方法较为麻烦,上一个方法较为直观,因此我们使用上一个方法)
public class Test2 { static class BlockingQueue { private int[] items = new int[1000]; // 此处的1000相当于队列的最大容量, 此处暂时不考虑扩容的问题. private int head = 0;//定义队头 private int tail = 0;//定义队尾 private int size = 0;//数组大小 private Object locker = new Object(); // put 用来入队列 public void put(int item) throws InterruptedException { synchronized (locker) { while (size == items.length) { // 队列已经满了,阻塞队列开始阻塞 locker.wait(); } items[tail] = item; tail++; // 如果到达末尾, 就回到起始位置. if (tail >= items.length) { tail = 0; } size++; locker.notify(); } } // take 用来出队列 public int take() throws InterruptedException { int ret = 0; synchronized (locker) { while (size == 0) { // 对于阻塞队列来说, 如果队列为空, 再尝试取元素, 就要阻塞 locker.wait(); } ret = items[head]; head++; if (head >= items.length) { head = 0; } size--; // 此处的notify 用来唤醒 put 中的 wait locker.notify(); } return ret; } } public static void main(String[] args) throws InterruptedException { BlockingQueue queue = new BlockingQueue(); // 消费者线程 Thread consumer = new Thread() { @Override public void run() { while (true) { try { int elem = queue.take(); System.out.println("消费元素: " + elem); } catch (InterruptedException e) { e.printStackTrace(); } } } }; consumer.start(); // 生产者线程 Thread producer = new Thread() { @Override public void run() { for (int i = 1; i < 10000; i++) { System.out.println("生产元素: " + i); try { queue.put(i); Thread.sleep(1000); } catch (InterruptedException e) { e.printStackTrace(); } } } }; producer.start(); consumer.join(); producer.join(); } }
运行结果如上。
注意:
1.wait和notify的正确使用
2.put和take都会产生阻塞情况,但阻塞条件是对立的,wait不会同时触发(put唤醒take阻塞,take唤醒put阻塞)
The above is the detailed content of Analyze examples of blocking queues in Java. For more information, please follow other related articles on the PHP Chinese website!