Java学习第二十三天

2021/5/30 20:50:38

本文主要是介绍Java学习第二十三天,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

目录

一、线程同步

二、生产者消费者

一、线程同步

package demo02;

public class Demo05Ticket {
	public static void main(String[] args) {
		RunnableImpl run= new RunnableImpl();
		Thread t0= new Thread(run);
		Thread t1= new Thread(run);
		Thread t2= new Thread(run);
		
		t0.start();
		t1.start();
		t2.start();
	}

}



package demo02;



public class demo01Ticket {
	public static void main(String[] args) {
		Runnablempl run= new Runnablempl();
		Thread t0= new Thread(run);
		Thread t1= new Thread(run);
		Thread t2= new Thread(run);
		
		t0.start();
		t1.start();
		t2.start();
	}

}



二、生产者消费者
在这里插入图片描述

package demo03;
/*
 * 等待唤醒案例:
 * 		创建一个顾客线程:告知老板要的包子的种类,用wait()方法等待,放弃cpu执行,
 * 		创建一个老板线程:花五秒做一个包子,做好过后,用notif通知顾客吃包子
 * 
 * 
 * 
 * 
 * 
 */
public class demo03WatiAndNo {
	public static void main(String[] args) {
		Object obj= new Object();
		//创建第一个消费者
		new Thread() {
			public void run() {
				while(true) {
					synchronized(obj) {
						System.out.println("恩");
						
						try {
							obj.wait();
						}catch (InterruptedException e) {
							e.printStackTrace();
						}
						System.out.println("嗯");
						System.out.println("======================");
					}
				}
			}
		}.start();
		
		new Thread() {
			public void run() {
				while(true) {
					try {
						Thread.sleep(2000);
					}catch(InterruptedException e) {
						e.printStackTrace();
					}
					synchronized (obj) {
						System.out.println("恩");
						obj.notify();
					}
				}
			}
		}.start();
	}

}



2020080605004



这篇关于Java学习第二十三天的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程