Java多线程的临界资源问题解决方案

作者:戈德里克山谷 时间:2021-12-29 07:44:35 

这篇文章主要介绍了Java多线程的临界资源问题解决方案,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下

临界资源问题的原因:某一个线程在对临界资源进行访问时,还没来得及完全修改临界资源的值,临界资源就被其他线程拿去访问,导致多个线程访问同一资源。直观表现为打印结果顺序混乱。

解决方法:加锁

静态方法中用类锁,非静态方法中用对象锁。

1.同步代码段:synchronized(){...}

2.同步方法:使用关键字synchronized修饰的方法

3.使用显式同步锁ReentrantLock

锁池描述的即为锁外等待的状态

方法一:同步代码段:synchronized(){...}


public class SourceConflict {
 public static void main(String[] args) {
   //实例化4个售票员,用4个线程模拟4个售票员

Runnable r = () -> {
     while (TicketCenter.restCount > 0) {
       synchronized(" ") {
         if (TicketCenter.restCount <= 0) {
           return;
         }
         System.out.println(Thread.currentThread().getName() + "卖出一张票,剩余" + --TicketCenter.restCount + "张票");
       }
     }
   };

//用4个线程模拟4个售票员
   Thread thread1 = new Thread(r, "thread-1");
   Thread thread2 = new Thread(r, "thread-2");
   Thread thread3 = new Thread(r, "thread-3");
   Thread thread4 = new Thread(r, "thread-4");

//开启线程
   thread1.start();
   thread2.start();
   thread3.start();
   thread4.start();

}  
}

//实现四名售票员共同售票,资源共享,非独立
//Lambda表达式或匿名内部类内部捕获的局部变量必须显式的声明为 final 或实际效果的的 final 类型,而捕获实例或静态变量是没有限制的
class TicketCenter{
 public static int restCount = 100;
}

方法二:同步方法,即使用关键字synchronized修饰的方法


public class SourceConflict2 {
 public static void main(String[] args) {
   //实例化4个售票员,用4个线程模拟4个售票员

Runnable r = () -> {
     while (TicketCenter.restCount > 0) {
       sellTicket();
     }
   };

//用4个线程模拟4个售票员
   Thread thread1 = new Thread(r, "thread-1");
   Thread thread2 = new Thread(r, "thread-2");
   Thread thread3 = new Thread(r, "thread-3");
   Thread thread4 = new Thread(r, "thread-4");

//开启线程
   thread1.start();
   thread2.start();
   thread3.start();
   thread4.start();

}

private synchronized static void sellTicket() {  
   if (TicketCenter.restCount <= 0) {
     return;
   }
   System.out.println(Thread.currentThread().getName() + "卖出一张票,剩余" + --TicketCenter.restCount + "张票");
 }
}

class TicketCenter{
 public static int restCount = 100;
}

方法三:使用显式同步锁ReentrantLock


import java.util.concurrent.locks.ReentrantLock;

public class SourceConflict3 {
 public static void main(String[] args) {
   //实例化4个售票员,用4个线程模拟4个售票员

//显式锁
   ReentrantLock lock = new ReentrantLock();
   Runnable r = () -> {
     while (TicketCenter.restCount > 0) {
       lock.lock();
       if (TicketCenter.restCount <= 0) {
         return;
       }
       System.out.println(Thread.currentThread().getName() + "卖出一张票,剩余" + --TicketCenter.restCount + "张票");
       lock.unlock();
     }
   };

//用4个线程模拟4个售票员
   Thread thread1 = new Thread(r, "thread-1");
   Thread thread2 = new Thread(r, "thread-2");
   Thread thread3 = new Thread(r, "thread-3");
   Thread thread4 = new Thread(r, "thread-4");

//开启线程
   thread1.start();
   thread2.start();
   thread3.start();
   thread4.start();

}  
}
class TicketCenter{
 public static int restCount = 100;
}

来源:https://www.cnblogs.com/ggrrbb/p/12289687.html

标签:Java,多,线程,临界,资源
0
投稿

猜你喜欢

  • java中的Io(input与output)操作总结(四)

    2021-10-11 03:14:19
  • Java实现多用户注册登录的幸运抽奖

    2023-07-30 11:57:44
  • Android Studio 打包生成APK文件方法

    2023-06-11 23:46:51
  • c++如何实现跳表(skiplist)

    2022-02-10 18:05:58
  • 利用 filter 机制给静态资源 url 加上时间戳,来防止js和css文件的缓存问题

    2022-03-16 07:51:24
  • Java读取json数据并存入数据库的操作代码

    2023-09-23 06:00:57
  • java反射遍历实体类属性和类型,并赋值和获取值的简单方法

    2023-07-15 04:37:18
  • Java实现小型图书馆管理系统

    2021-06-14 04:27:35
  • c#数据绑定之linq使用示例

    2022-07-17 11:07:22
  • SpringBoot集成Beetl后统一处理页面异常的方法

    2023-11-10 19:57:55
  • 浅谈利用Spring的AbstractRoutingDataSource解决多数据源的问题

    2021-09-07 07:20:59
  • Spring Boot如何通过CORS处理跨域问题

    2021-09-10 02:44:15
  • 详解java中产生死锁的原因及如何避免

    2022-04-22 00:36:14
  • 解决使用json-lib包实现xml转json时空值被转为空中括号的问题

    2022-10-20 02:12:14
  • C#实现简单计算器功能

    2023-02-13 19:26:44
  • Android 创建与解析XML(四)——详解Pull方式

    2023-06-03 07:10:23
  • Java项目实战之在线考试系统的实现(系统介绍)

    2022-12-22 11:23:05
  • C#生成随机数功能示例

    2022-03-25 04:52:40
  • Java GZIP压缩与解压缩代码实例

    2023-11-20 15:57:17
  • Flutter Android多窗口方案落地实战

    2023-01-30 04:55:07
  • asp之家 软件编程 m.aspxhome.com