大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
小编给大家分享一下如何解决Java多线程的临界资源问题,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!
创新互联10年专注成都高端网站建设按需网站策划服务,为客户提供专业的成都网站制作,成都网页设计,成都网站设计服务;创新互联服务内容包含成都网站建设,微信小程序开发,软件开发,网络营销推广,网络运营服务及企业形象设计;创新互联拥有众多专业的高端网站制作开发团队,资深的高端网页设计团队及经验丰富的架构师高端网站策划团队;我们始终坚持从客户的角度出发,为客户量身订造网络营销方案,解决网络营销疑问。临界资源问题的原因:某一个线程在对临界资源进行访问时,还没来得及完全修改临界资源的值,临界资源就被其他线程拿去访问,导致多个线程访问同一资源。直观表现为打印结果顺序混乱。
解决方法:加锁
静态方法中用类锁,非静态方法中用对象锁。
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; }
看完了这篇文章,相信你对“如何解决Java多线程的临界资源问题”有了一定的了解,如果想了解更多相关知识,欢迎关注创新互联网站建设公司行业资讯频道,感谢各位的阅读!
另外有需要云服务器可以了解下创新互联建站www.cdcxhl.com,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。