Java多线程窗口售票问题实例
程序员文章站
2024-04-01 16:45:04
本文介绍了多线程实现多个窗口售票问题的两种枷锁方式, 分别是synchronized 和lock()和unlock()
具体代码如下:
第一种:
packag...
本文介绍了多线程实现多个窗口售票问题的两种枷锁方式, 分别是synchronized 和lock()和unlock()
具体代码如下:
第一种:
package runnable; import java.util.concurrent.locks.lock; import java.util.concurrent.locks.reentrantlock; /* * 同步 * 这里有两种方式加锁 * 分别是 * 1.synchronized * 2.lock()和unlock() */ public class myrunnable implements runnable { private int tickets = 100; // 定义锁 private lock lock = new reentrantlock(); public void run() { while (true) { // 加锁 lock.lock(); if (tickets > 0) { try { thread.sleep(100); } catch (interruptedexception e) { // todo auto-generated catch block e.printstacktrace(); } system.out.println(thread.currentthread().getname() + "售出了第" + (tickets--) + "张票"); } lock.unlock(); } } }
结果:
第二种:
package runnable; /* * 同步 * 这里有两种方式加锁 * 分别是 * 1.synchronized * 2.lock()和unlock() */ public class myrunnable implements runnable { private int tickets = 100; public void run() { while (true) { synchronized (this) { if (tickets > 0) { try { thread.sleep(100); } catch (interruptedexception e) { // todo auto-generated catch block e.printstacktrace(); } system.out.println(thread.currentthread().getname() + "售出了第" + (tickets--) + "张票"); } } } } }
结果:
package runnable; public class runnabledemo { public static void main(string[] args) { myrunnable myrunnable = new myrunnable(); thread t1 = new thread(myrunnable, "窗口一"); thread t2 = new thread(myrunnable, "窗口二"); thread t3 = new thread(myrunnable, "窗口三"); t1.start(); t2.start(); t3.start(); } }
不知道是巧合还是怎么回事,运行这两个多线程小实例的时候,电脑突然卡了起来,我赶紧把eclipse关了。
有关于结束进程的语句并没有添加,自行参阅吧。
以上就是本文关于java多线程窗口售票问题实例的全部内容,希望对打击有所帮助。如有问题可以随时留言,期待您的宝贵意见。