Java多线程-同步:synchronized 和线程通信:生产者消费者模式
大家伙周末愉快,小乐又来给大家献上技术大餐。上次是说到了java多线程的创建和状态|乐字节,接下来,我们再来接着说java多线程-同步:synchronized 和线程通信:生产者消费者模式。
一、同步:synchronized
多个线程同时访问一个对象,可能造成非线程安全,数据可能错误,所谓同步:就是控制多个线程同时访就是控制多线程操作同一个对象时,注意是同一个对象,数据的准确性, 确保数据安全,但是加入同步后因为需要等待,所以效率相对低下。
如:一个苹果,自己一个人去咬怎么都不会出问题,但是多个人同时去咬,这个时候如果控制不好,就可能会咬到对方了。 再强调一下是一个苹果。
12306 中的火车票,为什么抢到票时,需要等待,锁定席位才付款?这就是确保一张票只能一个人去购买。
1、同步块
synchronized +块:同步块
synchronized (引用类型|对象|类.class) {
}
2、同步方法
修饰符 synchronized 返回类型|void 方法签名{
}
3、死锁
过多的同步容易死锁
/** * 死锁:容易造成死锁 * @author administrator * */ public class testdeadlock { /** * @param args */ public static void main(string[] args) { object obj1 =new object(); object obj2 =new object(); new a(obj1,obj2).start(); new b(obj1,obj2).start(); } } class a extends thread{ object obj1 ; object obj2; public a() { } public a(object obj1, object obj2) { super(); this.obj1 = obj1; this.obj2 = obj2; } @override public void run() { synchronized(obj1){ try { thread.sleep(200); } catch (interruptedexception e) { e.printstacktrace(); } synchronized(obj2){ } } system.out.println("给我烟"); } } class b extends thread{ object obj1 ; object obj2; public b() { } public b(object obj1, object obj2) { super(); this.obj1 = obj1; this.obj2 = obj2; } @override public void run() { synchronized(obj2){ try { thread.sleep(100); } catch (interruptedexception e) { e.printstacktrace(); } synchronized(obj1){ } } system.out.println("给我钱"); } }
二、线程通信:生产者消费者模式
线程通信的目标是使线程间能够互相发送信号。另一方面,线程通信使线程能够等待其
他线程的信号。
java 有一个内建的等待机制来允许线程在等待信号的时候变为非运行状态。
java.lang.object 类定义了三个方法,wait()、notify()和 notifyall()来实现这个等待机制。一个线程一旦调用了任意对象的 wait()方法,就会变为非运行状态,直到另一个线程调用了同一个对象的 notify()方法。为了调用 wait()或者 notify(),线程必须先获得那个对象的锁。也就是说,线程必须在同步块里调用 wait()或者 notify()。
以下为一个使用了 wait()和 notify()实现的线程间通信的共享对象:
/** * 街道 * @author administrator * */ public class street { //红绿灯 //false 红灯 -->人等 车走 -->换灯 通知人走 //true 绿灯 -->车等 人走 -->换灯 通知车走 private boolean flag=false; //东西向 -->人道 public synchronized void west(){ if(flag==false){ try { this.wait(); } catch (interruptedexception e) { e.printstacktrace(); } } try { thread.sleep(500); } catch (interruptedexception e) { e.printstacktrace(); } system.out.println("东西向-->人走"); //换灯 this.flag =false; this.notify(); //唤醒等待者 } //南北向 车道 public synchronized void north(){ if(flag==true){ try { this.wait(); } catch (interruptedexception e) { e.printstacktrace(); } } try { thread.sleep(200); } catch (interruptedexception e) { e.printstacktrace(); } system.out.println("南北向-->车走"); //换灯 this.flag =true; this.notify(); //唤醒等待者 } } class person extends thread { private street s ; public person(street s) { this.s = s; } public void run() { for(int i=0;i<10;i++){ s.west(); //东西向 } } } class car extends thread { private street s ; public car(street s) { this.s = s; } public void run() { for(int i=0;i<10;i++){ s.north(); } } }
java多线程的同步和线程通信就介绍到这里,更多技术干货请关注乐字节。乐字节原创!
上一篇: Python 入门之 闭包
下一篇: 吃火锅的菜都有啥,一起来看看
推荐阅读
-
Java多线程-同步:synchronized 和线程通信:生产者消费者模式
-
java多线程的生产者与消费者(线程之间如何通信)
-
2.5多线程(Java学习笔记)生产者消费者模式
-
Java多线程之生产者-消费者模型的三种写法(Synchronized、ReentrantLock、ArrayBlockingQueue)
-
java中的多线程的实现生产者消费者模式
-
day20Java-常用对象Thread-多线程中生产者和消费者
-
关于Java多线程------(4,经典案例---生产者和消费者)
-
Java同步和多线程1:多线程的基本操作及synchronized的应用
-
Java多线程 - (三) 线程间的通信(协作) - 生产者/消费者模式
-
java多线程-Producer-consumer(生产者消费者模式)