服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|JavaScript|易语言|

服务器之家 - 编程语言 - Java教程 - 利用synchronized实现线程同步的案例讲解

利用synchronized实现线程同步的案例讲解

2021-08-11 11:24Chin_style Java教程

这篇文章主要介绍了利用synchronized实现线程同步的案例讲解,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧

一、前期基础知识储备

(1)线程同步的定义:多线程之间的同步。

(2)多线程同步原因:一个多线程的程序如果是通过Runnable接口实现的,则意味着类中的属性将被多个线程共享,由此引出资源的同步问题,即当多个线程要操作同一资源时,有可能出现错误。

(3)实现多线程同步的方式——引入同步机制:在线程使用一个资源时为其加锁,这样其他的线程便不能访问那个资源了,直到解锁后才可以访问。——这样做的结果,所有线程间会有资源竞争,但是所有竞争的资源是同步的,刷新的,动态的,不会因为线程间的竞争,导致资源“过度消耗”或者“虚拟消耗”。

上代码,具体展示“过度消耗/虚拟消耗”问题:

  1. public class TestTicketRunnable{
  2. public static void main(String[] a){
  3. TicketThread tThread = new TicketThread();
  4. new Thread(tThread).start();
  5. new Thread(tThread).start();
  6. new Thread(tThread).start();
  7. }
  8. };
  9. class TicketThread implements Runnable {
  10. private int ticket = 5;
  11. public void run(){
  12. for (int i = 0; i < 5; i++){
  13. if (ticket > 0){
  14. try {
  15. Thread.sleep(300);
  16. } catch (InterruptedException e) {
  17. e.printStackTrace();
  18. }
  19. System.out.println(Thread.currentThread().getName() + "卖票:ticket = " + ticket--);
  20. }
  21. }
  22. }
  23. };

运行结果:

  1. Thread-0卖票:ticket = 5
  2. Thread-2卖票:ticket = 5 //虚拟消耗
  3. Thread-1卖票:ticket = 4
  4. Thread-1卖票:ticket = 2
  5. Thread-2卖票:ticket = 3
  6. Thread-0卖票:ticket = 3 //虚拟消耗
  7. Thread-0卖票:ticket = -1 //过度消耗
  8. Thread-1卖票:ticket = 1
  9. Thread-2卖票:ticket = 0

如上所见,票一共5张,三个线程调用买票,线程1网上卖了售票第1张,紧接着线程2线下也卖了“第一张”出现了“虚拟消耗”的问题;线程3黄牛党卖了最后1张票,线程1网上又卖了最后1张,出现了“过度消耗”的问题,这两种问题都是实际生活中不可能发生的,但是在这个3个线程执行中却出现了,那一定是有问题的,问题的根源就在于,三个渠道的“售票员”不在一个频道上办事,或者说没有相互之间同步所共享的资源,导致这一问题的根本原因,就是相互之间实现方式不同步。

二、使用synchronized实现同步机制

synchronized关键字:Java语言的关键字,可用来给对象和方法或者代码块加锁,当它锁定一个方法或者一个代码块的时候,同一时刻最多只有一个线程执行这段代码。

当两个并发线程访问同一个对象object中的这个加锁同步代码块时,一个时间内只能有一个线程得到执行。另一个线程必须等待当前线程执行完这个代码块以后才能执行该代码块。

它包括两种用法:synchronized 方法和 synchronized 块。

即实现线程间同步的方式有两种:

①使用synchronized同步代码块;

②使用synchronized关键字创建synchronized()方法

下面分别进行解析,对上面售票的代码进行改造:

①代码——使用synchronized同步代码块

  1. class TicketThread implements Runnable {
  2. private int ticket = 5;
  3. public void run(){
  4. for (int i = 0; i < 5; i++){
  5. synchronized(this){
  6. if (ticket > 0){
  7. try {
  8. Thread.sleep(300);
  9. } catch (InterruptedException e) {
  10. e.printStackTrace();
  11. }
  12. System.out.println(Thread.currentThread().getName() + "卖票:ticket = " + ticket--);
  13. }
  14. }
  15. }
  16. }
  17. }

②代码——使用synchronized关键字创建synchronized()方法

  1. class TicketThreadMethod implements Runnable {
  2. private int ticket = 5;
  3. public void run(){
  4. for (int i = 0; i < 5; i++){
  5. this.sale();
  6. }
  7. }
  8. public synchronized void sale(){
  9. if (ticket > 0){
  10. try {
  11. Thread.sleep(300);
  12. } catch (InterruptedException e) {
  13. e.printStackTrace();
  14. }
  15. System.out.println(Thread.currentThread().getName() + "卖票:ticket = " + ticket--);
  16. }
  17. }
  18. }

三、synchronized方法和synchronized同步代码块的区别:

synchronized同步代码块只是锁定了该代码块,代码块外面的代码还是可以被访问的。

synchronized方法是粗粒度的并发控制,某一个时刻只能有一个线程执行该synchronized方法。

synchronized同步代码块是细粒度的并发控制,只会将块中的代码同步,代码块之外的代码可以被其他线程同时访问。

补充:多线程同步锁synchronized(对象锁与全局锁)总结

1.synchronized同步锁的引入

  1. /*
  2. * 非线程安全
  3. * */
  4. //多个线程共同访问一个对象中的实例变量,则会出现"非线程安全"问题
  5. class MyRunnable1 implements Runnable{
  6. private int num = 10;
  7. public void run() {
  8. try {
  9. if(num > 0) {
  10. System.out.println(""+Thread.currentThread().getName()+"开始"+",num= "+num--);
  11. Thread.sleep(1000);
  12. System.out.println(""+Thread.currentThread().getName()+"结束");
  13. }
  14. } catch (InterruptedException e) {
  15. e.printStackTrace();
  16. }
  17. }
  18. }public class Test5_5{
  19. public static void main(String[] args) {
  20. MyRunnable1 myRunnable1 = new MyRunnable1();
  21. Thread thread1 = new Thread(myRunnable1,"线程1");
  22. Thread thread2 = new Thread(myRunnable1,"线程2");
  23. thread1.start();
  24. thread2.start();
  25. }
  26. }

利用synchronized实现线程同步的案例讲解

上例说明两个线程同时访问一个没有同步的方法,如果两个线程同时操作业务对象中的实例变量,则会出现“线程不安全”问题。

由此我们引入synchronized关键字来实现同步问题:

在Java中使用synchronized关键字控制线程同步,控制synchronized代码段不被多个线程同时执行,synchronized即可以使用在方法上也可以使用在代码块中。

2. 对象锁

(1)synchronized方法(对当前对象进行加锁)

若我们对如上代码进行修改,在run()方法上加入synchronized关键字使其变为同步方法。

  1. /*
  2. * 同步方法
  3. * */
  4. class MyRunnable1 implements Runnable{
  5. private int num = 10;
  6. public void run() {
  7. this.print();
  8. }
  9.  
  10. public synchronized void print() {
  11. if(this.num > 0) {
  12. System.out.println(""+Thread.currentThread().getName()+"开始"+",num= "+num--);
  13. try {
  14. Thread.sleep(1000);
  15. } catch (InterruptedException e) {
  16. e.printStackTrace();
  17. }
  18. System.out.println(""+Thread.currentThread().getName()+"结束");
  19. }
  20. }
  21. }public class Test5_5{
  22. public static void main(String[] args) {
  23. MyRunnable1 myRunnable1 = new MyRunnable1();
  24. Thread thread1 = new Thread(myRunnable1,"线程1");
  25. Thread thread2 = new Thread(myRunnable1,"线程2");
  26. thread1.start();
  27. thread2.start();
  28. }
  29. }

利用synchronized实现线程同步的案例讲解

结论:若两个线程同时访问同一个对象中的同步方法时一定是线程安全的。

(2)synchronized代码块(对某一个对象进行加锁)

如果要使用同步代码块必须设置一个要锁定的对象,所以一般可以锁定当前对象:this.

  1. /*
  2. * 同步代码块
  3. * */
  4. class MyRunnable1 implements Runnable{
  5. private int num = 10;
  6. public void run() {
  7. try {
  8. synchronized (this) {
  9. if(num > 0) {
  10. System.out.println(""+Thread.currentThread().getName()+"开始"+",num= "+num--);
  11. Thread.sleep(1000);
  12. System.out.println(""+Thread.currentThread().getName()+"结束");
  13. }
  14. }
  15. } catch (InterruptedException e) {
  16. e.printStackTrace();
  17. }
  18. }
  19. }
  20.  
  21. public class Test5_5{
  22. public static void main(String[] args) {
  23. MyRunnable1 myRunnable1 = new MyRunnable1();
  24. Thread thread1 = new Thread(myRunnable1,"线程1");
  25. Thread thread2 = new Thread(myRunnable1,"线程2");
  26. thread1.start();
  27. thread2.start();
  28. }
  29. }

利用synchronized实现线程同步的案例讲解

(3)synchronized锁多对象

  1. /*
  2. * synchronized锁多对象
  3. * */
  4. class Sync{
  5. public synchronized void print() {
  6. System.out.println("print方法开始:"+Thread.currentThread().getName());
  7. try {
  8. Thread.sleep(1000);
  9. } catch (InterruptedException e) {
  10. // TODO Auto-generated catch block
  11. e.printStackTrace();
  12. }
  13. System.out.println("print方法结束"+Thread.currentThread().getName());
  14. }
  15. }
  16. class MyThread extends Thread{
  17. public void run() {
  18. Sync sync = new Sync();
  19. sync.print();
  20. }
  21. }
  22. public class Test5_5{
  23. public static void main(String[] args) {
  24. for(int i = 0; i < 3;i++) {
  25. Thread thread = new MyThread();
  26. thread.start();
  27. }
  28. }
  29. }

利用synchronized实现线程同步的案例讲解

根据上例我们可以发现当synchronized锁多个对象时不能实现同步操作,由此可以得出关键字synchronized取得的锁都是对象锁,而不是将一段代码或者方法(函数)当作锁。哪个线程先执行带synchronized关键字的方法或synchronized代码块,哪个线程就有该方法或该代码块所持有的锁,其他线程只能呈现等待状态,前提是多个线程访问同一个对象。

只有共享资源的读写需要同步化,如果不是共享资源,那么就不需要同步化操作。

3.全局锁

实现全局锁有两种方式:

(1) 将synchronized关键字用在static方法上

synchronized加到static静态方法上是对Class类上锁,而synchronized加到非static方法上是给对对象上锁。Class锁可以对类的所有对象实例起作用。

  1. /*
  2. * synchronized用在static方法上
  3. * */
  4. class Sync{
  5. static public synchronized void print() {
  6. System.out.println("print方法开始:"+Thread.currentThread().getName());
  7. try {
  8. Thread.sleep(1000);
  9. } catch (InterruptedException e) {
  10. // TODO Auto-generated catch block
  11. e.printStackTrace();
  12. }
  13. System.out.println("print方法结束"+Thread.currentThread().getName());
  14. }
  15. }
  16. class MyThread extends Thread{
  17. public void run() {
  18. Sync.print();
  19. }
  20. }
  21. public class Test5_5{
  22. public static void main(String[] args) {
  23. for(int i = 0; i < 3;i++) {
  24. Thread thread = new MyThread();
  25. thread.start();
  26. }
  27. }
  28. }

利用synchronized实现线程同步的案例讲解

(2) 用synchronized对类的Class对象进行上锁

synchronized(class)代码块的作用与synchronized static方法的作用一样。

  1. /*
  2. * synchronized对类的Class对象上锁
  3. * */
  4. class Sync{
  5. public void print() {
  6. synchronized (Sync.class) {
  7. System.out.println("print方法开始:"+Thread.currentThread().getName());
  8. try {
  9. Thread.sleep(1000);
  10. } catch (InterruptedException e) {
  11. // TODO Auto-generated catch block
  12. e.printStackTrace();
  13. }
  14. System.out.println("print方法结束"+Thread.currentThread().getName());
  15. }
  16. }
  17. }
  18. class MyThread extends Thread{
  19. public void run() {
  20. Sync sync = new Sync();
  21. sync.print();
  22. }
  23. }
  24. public class Test5_5{
  25. public static void main(String[] args) {
  26. for(int i = 0; i < 3;i++) {
  27. Thread thread = new MyThread();
  28. thread.start();
  29. }
  30. }
  31. }

利用synchronized实现线程同步的案例讲解

以上为个人经验,希望能给大家一个参考,也希望大家多多支持我们。如有错误或未考虑完全的地方,望不吝赐教。

原文链接:https://blog.csdn.net/weixin_41101173/article/details/79705582

延伸 · 阅读

精彩推荐