您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
本文小编为大家详细介绍“Java可重入锁与不可重入锁怎么写”,内容详细,步骤清晰,细节处理妥当,希望这篇“Java可重入锁与不可重入锁怎么写”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。
不可重入锁
//不可重入锁public class LockTest {Lock lock=new Lock();public void a() throws InterruptedException {lock.lock(); b();lock.unlock(); }//不可重入 public void b() throws InterruptedException {lock.lock(); //........ lock.unlock(); }public static void main(String[] args) throws InterruptedException {LockTest lockTest=new LockTest();lockTest.a();lockTest.b(); } }class Lock{//是否占用 private boolean flag=false;//使用锁 public synchronized void lock() throws InterruptedException {while(flag){ wait(); }flag=true; }public synchronized void unlock(){flag=false; notify(); } }
可重入锁
//可重入锁public class LockTest {ReLock lock=new ReLock();public void a() throws InterruptedException {lock.lock();System.out.println(lock.getCount()); b();lock.unlock();System.out.println(lock.getCount()); }//不可重入 public void b() throws InterruptedException {lock.lock();System.out.println(lock.getCount()); //........ lock.unlock();System.out.println(lock.getCount()); }public static void main(String[] args) throws InterruptedException {LockTest lockTest=new LockTest();lockTest.a();Thread.sleep(1000);System.out.println(lockTest.lock.getCount()); } }//可重入锁class ReLock{//是否占用 private boolean flag=false;private Thread LockedBY=null;//存储线程 private int count=0;//使用锁 public synchronized void lock() throws InterruptedException {Thread t=Thread.currentThread();while(flag&&LockedBY!=t){ wait(); }flag=true;LockedBY=t;count++; }public synchronized void unlock(){if(Thread.currentThread()==LockedBY){count--;if(count==0){flag=false; notify();LockedBY=null; } } }public int getCount() {return count; } }
读到这里,这篇“Java可重入锁与不可重入锁怎么写”文章已经介绍完毕,想要掌握这篇文章的知识点还需要大家自己动手实践使用过才能领会,如果想了解更多相关内容的文章,欢迎关注亿速云行业资讯频道。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。