Cirry's Blog

综合实战,消费者与生产者模型

Oct 8, 2019
技术 java
8分钟
1467字

在多线程的开发过程之中最为著名的案例就是生产者与消费者操作,该操作的主要流程如下

  • 生产者负责信息内容的生产:
  • 每当生产者生产完成一项完整的信息之后,消费者要从这里面取走信息:
  • 如果生产者没有生产完,则消费者要等待他生产完成,如果消费者还没有对信息进行消费,则生产者要等待消费者对信息消费完成之后再生产

程序的基本实现

可以将生产者与消费者定义为两个独立的线程类对象,但是对于现在生产的数据 可以使用如下的组成

  • 数据一:title=cirry,content=帅哥
  • 数据二:title=winnie,content=美女 既然生产者与消费者是两个独立的线程,那么这两个独立的线程之间就需要一个数据的保存集中点,那么可以单独的定义一个Message类

范例:

package cn.cccc.demo;
class Producer implements Runnable{
private Message msg;
public Producer(Message msg){
this.msg = msg;
}
public void run() {
for(int x = 0; x < 100; x++){
if(x%2==0){
this.msg.setTitle("cirry");
try {
Thread.sleep(100);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
63 collapsed lines
}
this.msg.setContent("帅哥");
}else {
this.msg.setTitle("winnie");
try {
Thread.sleep(100);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
this.msg.setContent("美女");
}
}
}
}
class Consumer implements Runnable{
private Message msg;
public Consumer(Message msg){
this.msg = msg;
}
public void run(){
for(int x = 0; x < 100 ; x ++){
try {
Thread.sleep(10);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
System.out.println(this.msg.getContent()+ " - " + this.msg.getTitle());
}
}
}
class Message {
private String title;
private String content;
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
}
public class ThreadDemo {
public static void main(String[] args) {
Message msg = new Message();
new Thread(new Producer(msg)).start(); //启动生产者线程
new Thread(new Consumer(msg)).start(); //启动消费者线程
}
}
//执行结果:
//null - cirry
//帅哥 - winnie
//美女 - cirry

通过整个代码的执行你会发现此时有两个问题:

  • 问题一:数据不同步了
  • 问题二:生产一个取走一个,但是发现有了重复生产和重复取出问题。

解决数据同步问题

如果想要解决问题, 首先要解决的就是数据同步的处理问题,如果要想解决数据同步最简的就是用synchronize同步代码块或同步方法,于是这个时候对于同步的处理就可以直接在Message类中完成。 范例:解决同步操作问题

package cn.cccc.demo;
class Producer implements Runnable{
private Message msg;
public Producer(Message msg){
this.msg = msg;
}
public void run() {
for(int x = 0; x < 100; x++){
if(x%2==0){
this.msg.set("cirry","帅哥");
}else {
this.msg.set("winnie","美女");
}
}
}
37 collapsed lines
}
class Consumer implements Runnable{
private Message msg;
public Consumer(Message msg){
this.msg = msg;
}
public void run(){
for(int x = 0; x < 100 ; x ++){
System.out.println(this.msg.get());
}
}
}
class Message {
private String title;
private String content;
public synchronized void set(String title , String content){
this.title = title;
this.content = content;
}
public synchronized String get(){
return this.title + " - " + this.content;
}
}
public class ThreadDemo {
public static void main(String[] args) {
Message msg = new Message();
new Thread(new Producer(msg)).start(); //启动生产者线程
new Thread(new Consumer(msg)).start(); //启动消费者线程
}
}
//运行结果:
//winnie - 美女
//winnie - 美女
//winnie - 美女
//...
//cirry - 帅哥是彻底消失不见了

在进行同步处理的时候肯定需要有一个同步的处理对象,那么此时肯定要将同步操作交由Message类处理最合适。这个时候发现数据已经可以正常的保持一致了,但是对于重复操作的问题依然存在。

线程等待与唤醒

如果仙子要想解决生产者与箱费这的问题,那么最好的解决方案就是使用等待与唤醒机制。而对于等待与唤醒的机制主要依靠的是Object类中提供的方法处理:

  • 等待机制:
    • 死等:public final void wait() throws InterruptedException ;
    • 设置等待时间:public final void wait(long timeout) throws InterruptedException ;
    • 设置等待时间 :public final void wait(long timeout, int nanos) throws InterruptedException;
  • 唤醒第一个等待线程:public final void notify();
  • 唤醒全部等待线程:public final void notifyAll(); 如果此时有若干个等待线程的话,那么notify()表示的是唤醒第一个等待的,而其他的线程继续等待。而notifyAll()表示会唤醒所有等待的线程,哪个线程的优先级高就有可能先执行。 对于当前的问题主要的解决应该通过Message类来解决。 范例:
package cn.cccc.demo;
class Producer implements Runnable{
private Message msg;
public Producer(Message msg){
this.msg = msg;
}
public void run() {
for(int x = 0; x < 100; x++){
if(x%2 == 0){
this.msg.set("cirry","帅哥");
}else {
this.msg.set("winnie","美女");
}
}
}
69 collapsed lines
}
class Consumer implements Runnable{
private Message msg;
public Consumer(Message msg){
this.msg = msg;
}
public void run(){
for(int x = 0; x < 100 ; x ++){
System.out.println(this.msg.get());
}
}
}
class Message {
private String title;
private String content;
private boolean flag = true; //表示生产或消费的形式。
// flag = true; 允许生产,但是不允许消费
// flag = false; 允许消费,但是不允许生产
public synchronized void set(String title , String content){
try {
Thread.sleep(100);
} catch (InterruptedException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
if(this.flag == false){
try {
super.wait();
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
this.title = title;
this.content = content;
}
this.flag = false;//已经生产过了
super.notify(); //唤醒等待的线程
}
public synchronized String get(){
try {
Thread.sleep(100);
} catch (InterruptedException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
if(this.flag == true){// 还未生产需要等待
try{
super.wait();
}catch(InterruptedException e){
e.printStackTrace();
}
}
try{
return this.title + " - " + this.content;
}finally{ //不管如何,都要执行
this.flag = true; //表示继续生产
super.notify();
}
}
}
public class ThreadDemo {
public static void main(String[] args) {
Message msg = new Message();
new Thread(new Producer(msg)).start(); //启动生产者线程
new Thread(new Consumer(msg)).start(); //启动消费者线程
}
}

执行结果: cirry - 帅哥 winnie - 美女 … 这个方案就是多线程开发过程之中最原始的处理方案,整个的等待,同步,唤醒机智都是由开发者自行通过原生代码实现控制。

本文标题:综合实战,消费者与生产者模型
文章作者:Cirry
发布时间:Oct 8, 2019
感谢大佬送来的咖啡☕
alipayQRCode
wechatQRCode
总访问量
总访客数人次