6、线程同步
1.介绍
多个线程操作同一个资源
-
由于同一进程的多个线程共享同一块存储空间,在带来方便的同时,也带来了访问冲突问题,为了保证数据在方法中被访问时的正确性,在访问时加入锁机制synchronized ,当一个线程获得对象的排它锁,独占资源,其他线程必须等待,使用后释放锁即可,存在以下问题:
-
一个线程持有锁会导致其他所有需要此锁的线程挂起;
-
在多线程竞争下,加锁,释放锁会导致比较多的上下文切换和调度延时,引起性能问题;
-
如果一个优先级高的线程等待一个优先级低的线程释放锁会导致优先级倒置,引起性能问题.
-
2.不安全的线程案例
package com.xing.syn; //不安全买票 public class UnsafeBuyTicket { public static void main(String[] args) { BuyTicket buyTicket = new BuyTicket(); new Thread(buyTicket, "张三").start(); new Thread(buyTicket, "李四").start(); new Thread(buyTicket, "王五").start(); } } class BuyTicket implements Runnable { //票 private int ticketNums = 10; boolean flag = true; @Override public void run() { //买票 while (flag) { try { buy(); } catch (Exception e) { e.printStackTrace(); } } } //买票 private void buy() { //判断是否有票 if (ticketNums <= 0) { flag = false; return; } //延迟 try { Thread.sleep(1); } catch (InterruptedException e) { e.printStackTrace(); } //买票 System.out.println(Thread.currentThread().getName() + "拿到" + ticketNums--); } }
剩下最后一张票时,三个人以为都有票,都去买票,没有进行线程同步,造成数据错误
package com.xing.syn; /** * 不安全的取钱 */ public class UnsafeBank { public static void main(String[] args) { //共100 Account account = new Account(100, "结婚基金"); //你取了50 Drawing you = new Drawing(account, 50, "you"); //girlfriend取了100 Drawing girlfriend = new Drawing(account, 100, "girlfriend"); //两个线程取钱 you.start(); girlfriend.start(); } } //账户 class Account { int money;//余额 String cardName;//卡名 public Account(int money, String cardName) { this.money = money; this.cardName = cardName; } } //银行:模拟取款 class Drawing extends Thread { Account account;//账户 int drawingMoney;//取金额 int nowMoney;//你手里的钱 public Drawing(Account account, int drawingMoney, String name) { super(name); this.account = account; this.drawingMoney = drawingMoney; } //取钱 @Override public void run() { //判断是否有钱 if (account.money - drawingMoney < 0) { System.out.println(Thread.currentThread().getName() + "余额不足,不能进行取钱"); return; } try { Thread.sleep(1000);//放大问题的发生性 } catch (InterruptedException e) { e.printStackTrace(); } //卡内金额 = 余额-你取的钱 account.money = account.money - drawingMoney; //你手里的钱 nowMoney = nowMoney + drawingMoney; System.out.println(account.cardName + "余额为:" + account.money); //this.getName()==Thread.currentThread().getName() //因为继承了Thread,Thread中有getName方法 System.out.println(this.getName() + "手里的钱:" + nowMoney); } }
数据错误:剩余-50
package com.xing.syn; import java.util.ArrayList; import java.util.List; //线程不安全的集合 public class UnsafeList { public static void main(String[] args) { List<String> list = new ArrayList<String>(); for (int i = 0; i < 1000; i++) { new Thread(()->{ //可能多个线程操作同一个list位置,数据覆盖 list.add(Thread.currentThread().getName()); }).start(); } System.out.println(list.size());//正常为1000条 } }
3.同步方法
-
由于我们可以通过private 关键字来保证数据对象只能被方法访问,所以我们只需要针对方法提出一套机制,这套机制就是synchronized关键字,它包括两种用法︰synchronized方法和synchronized 块.
同步方法: public synchronized void method(int args)
-
synchronized方法控制对“对象”的访问,每个对象对应一把锁,每个synchronized方法都必须获得调用该方法的对象的锁才能执行,否则线程会阻塞,方法一旦执行,就独占该锁,直到该方法返回才释放锁,后面被阻塞的线程才能获得这个锁,继续执行
缺陷︰若将一个大的方法申明为synchronized将会影响效率
同步方法,锁的是this
实现:
package com.xing.syn; //不安全买票 public class UnsafeBuyTicket { public static void main(String[] args) { BuyTicket buyTicket = new BuyTicket(); new Thread(buyTicket, "张三").start(); new Thread(buyTicket, "李四").start(); new Thread(buyTicket, "王五").start(); } } class BuyTicket implements Runnable { //票 private int ticketNums = 10; boolean flag = true; @Override public void run() { //买票 while (flag) { try { buy(); } catch (Exception e) { e.printStackTrace(); } } } //买票 synchronized 同步方法 锁的是this private synchronized void buy() { //判断是否有票 if (ticketNums <= 0) { flag = false; return; } //延迟 try { Thread.sleep(1); } catch (InterruptedException e) { e.printStackTrace(); } //买票 System.out.println(Thread.currentThread().getName() + "拿到" + ticketNums--); } }
4.同步块
-
同步块:synchronized (Obj ) { }
-
Obj称之为同步监视器
-
obj可以是任何对象,但是推荐使用共享资源作为同步监视器
-
同步方法中无需指定同步监视器,因为同步方法的同步监视器就是this ,就是这个对象本身,或者是class [反射中讲解]
同步监视器的执行过程
1.第一个线程访问,锁定同步监视器,执行其中代码.
2.第二个线程访问,发现同步监视器被锁定,无法访问.
3.第一个线程访问完毕,解锁同步监视器.
4、第二个线程访问,发现同步监视器没有锁,然后锁定并访问.
-
锁的对象就是变量的量,需要增删改查的对象
实现:
package com.xing.syn; /** * 不安全的取钱 */ public class UnsafeBank { public static void main(String[] args) { Account1 account = new Account1(100, "结婚基金"); Drawing1 you = new Drawing1(account, 50, "you"); Drawing1 girlfriend = new Drawing1(account, 100, "girlfriend"); you.start(); girlfriend.start(); } } //账户 class Account1 { int money;//余额 String cardName;//卡名 public Account1(int money, String cardName) { this.money = money; this.cardName = cardName; } } //银行:模拟取款 class Drawing1 extends Thread { Account1 account;//账户 int drawingMoney;//取金额 int nowMoney;//你手里的钱 public Drawing1(Account1 account, int drawingMoney, String name) { super(name); this.account = account; this.drawingMoney = drawingMoney; } //取钱 @Override public void run() { //锁的对象就是变化的量,需要增删改查的对象 synchronized (account) { //判断是否有钱 if (account.money - drawingMoney < 0) { System.out.println(Thread.currentThread().getName() + "余额不足,不能进行取钱"); return; } try { Thread.sleep(1000);//放大问题的发生性 } catch (InterruptedException e) { e.printStackTrace(); } //卡内金额 = 余额-你的钱 account.money = account.money - drawingMoney; //你手里的钱 nowMoney = nowMoney + drawingMoney; System.out.println(account.cardName + "余额为:" + account.money); //this.getName()==Thread.currentThread().getName() System.out.println(this.getName() + "手里的钱:" + nowMoney); } } }
package com.xing.syn; import java.util.ArrayList; import java.util.List; public class UnsafeList { public static void main(String[] args) { List<String> list = new ArrayList<String>(); for (int i = 0; i < 1000; i++) { new Thread(()->{ synchronized (list) { list.add(Thread.currentThread().getName()); } }).start(); } System.out.println(list.size());//1000 } }
JUC安全集合类型扩充
package com.xing.syn; import java.util.concurrent.CopyOnWriteArrayList; //测试JUC安全类型的集合 public class ThreadJuc { public static void main(String[] args) { //这个list默认就是安全的 CopyOnWriteArrayList<String> list = new CopyOnWriteArrayList<String>(); for (int i = 0; i < 10000; i++) { new Thread(() -> { list.add(Thread.currentThread().getName()); }).start(); } try { Thread.sleep(3000); } catch (InterruptedException e) { e.printStackTrace(); } System.out.println(list.size());//10000 } }
5.死锁
多个线程各自占有一些共享资源,并且互相等待其他线程占有的资源才能运行,而导致两个或者多个线程都在等待对方释放资源,都停止执行的情形,某一个同步块同时拥有“两个以上对象的锁”时,就可能会发生“死锁”的问题
案例:
package com.xing.syn; /** * 死锁:多个线程互相抱着对方需要的资源,然后形成僵持 * 解决:一个锁只锁一个对象 */ class Demo31_DeadLock { public static void main(String[] args) { Makeup makeup = new Makeup(0, "灰姑娘"); Makeup makeup1 = new Makeup(1, "白雪公主"); makeup.start(); makeup1.start(); } } //口红 class Lipstick { } //镜子 class Mirror { } //化妆 class Makeup extends Thread { //需要的资源只有一份,用static保证只有一份 static Lipstick lipstick = new Lipstick(); static Mirror mirror = new Mirror(); int choice;//选择 String girlName;//使用化妆品的人 public Makeup(int choice, String girlName) { this.choice = choice; this.girlName = girlName; } @Override public void run() { //化妆 try { makeup(); } catch (InterruptedException e) { e.printStackTrace(); } } //化妆 private void makeup() throws InterruptedException { //0代表先拿口红 非0代表先拿镜子 if (choice == 0) { synchronized (lipstick) {//获得口红的锁 System.out.println(this.girlName + "获得口红的锁"); Thread.sleep(1000); synchronized (mirror) {//一秒钟后想获得镜子 System.out.println(this.girlName + "获得镜子的锁"); } } } else { synchronized (mirror) {//获得口红镜子 System.out.println(this.girlName + "获得镜子的锁"); Thread.sleep(2000); synchronized (lipstick) {//二秒钟后想获得的锁 System.out.println(this.girlName + "获得口红的锁"); } } } } }
解决:
package com.xing.syn; /** * 死锁:多个线程互相抱着对方需要的资源,然后形成僵持 * 解决:一个锁只锁一个对象 */ class Demo31_DeadLock { public static void main(String[] args) { Makeup makeup = new Makeup(0, "灰姑娘"); Makeup makeup1 = new Makeup(1, "白雪公主"); makeup.start(); makeup1.start(); } } //口红 class Lipstick { } //镜子 class Mirror { } //化妆 class Makeup extends Thread { //需要的资源只有一份,用static保证只有一份 static Lipstick lipstick = new Lipstick(); static Mirror mirror = new Mirror(); int choice;//选择 String girlName;//使用化妆品的人 public Makeup(int choice, String girlName) { this.choice = choice; this.girlName = girlName; } @Override public void run() { //化妆 try { makeup(); } catch (InterruptedException e) { e.printStackTrace(); } } //化妆 private void makeup() throws InterruptedException { //0代表先拿口红 非0代表先拿镜子 if (choice == 0) { synchronized (lipstick) {//获得口红的锁 System.out.println(this.girlName + "获得口红的锁"); Thread.sleep(1000); } synchronized (mirror) {//一秒钟后想获得镜子 System.out.println(this.girlName + "获得镜子的锁"); } } else { synchronized (mirror) {//获得口红镜子 System.out.println(this.girlName + "获得镜子的锁"); Thread.sleep(2000); } synchronized (lipstick) {//二秒钟后想获得的锁 System.out.println(this.girlName + "获得口红的锁"); } } } }
死锁避免办法
产生死锁的四个必要条件:
-
互斥条件:一个资源每次只能被一个进程使用。
-
请求与保持条件:一个进程因请求资源而阻塞时,对已获得的资源保持不放。
-
不剥夺条件:进程已获得的资源,在末使用完之前,不能强行剥夺。
-
循环等待条件∶若干进程之间形成一种头尾相接的循环等待资源关系。
上面列出了死锁的四个必要条件,我们只要想办法破其中的任意一个或多个条件就可以避免死锁发生
6.Lock(锁)
-
从JDK 5.0开始,Java提供了更强大的线程同步机制:通过显式定义同步锁对象来实现同步。同步锁使用Lock对象充当
-
java.util.concurrent:locks.Lock接口是控制多个线程对共享资源进行访问的工具。锁提供了对共享资源的独占访问,每次只能有一个线程对Lock对象加锁,线程开始访问共享资源之前应先获得Lock对象
-
ReentrantLock类实现了Lock,它拥有与synchronized相同的并发性和内存语义,在实现线程安全的控制中,比较常用的是ReentrantLock,可以显式加锁、释放锁。
-
实现
package com.xing.syn; import java.util.concurrent.locks.ReentrantLock; //测试Lock锁 public class TestLock { public static void main(String[] args) { TestLock2 testLock2 = new TestLock2(); //3个线程 new Thread(testLock2).start(); new Thread(testLock2).start(); new Thread(testLock2).start(); } } class TestLock2 implements Runnable { int tickerNums = 10; //定义Lock锁 private final ReentrantLock lock = new ReentrantLock(); @Override public void run() { while (true) { try { lock.lock();//加锁 if (tickerNums > 0) { try { Thread.sleep(1000); } catch (InterruptedException e) { e.printStackTrace(); } System.out.println(tickerNums--); } else{ break; } } finally { lock.unlock();//解锁 } } } }
按顺序输出,不会出现重复和-1等错误值
7.synchroized与Lock对比
-
Lock是显式锁(手动开启和关闭锁,别忘记关闭锁) synchronized是隐式锁,出了作用域自动释放
-
Lock只有代码块锁,synchronized有代码块锁和方法锁
-
使用Lock锁,JVM将花费较少的时间来调度线程,性能更好。并且具有更好的扩展性(提供更多的子类)
-
优先使用顺序:
-
Lock >同步代码块(已经进入了方法体,分配了相应资源)>同步方法(在方法体之外)
-
标签:account,20,synchronized,Thread,线程,2022.8,new,public From: https://www.cnblogs.com/shanzha/p/16609139.html