java-线程锁

实现锁:

1.同步代码块:

 

 

2.同步方法:在方法的头部加上synchronized

3.Lock:功能比synchronized更加的强大,但是加锁的时一定不要忘记解锁unlock();

在使用lock锁时,想要实现睡眠唤醒功能,就要使用condition,对应的方法是await(),singal(),singalAll()

 

posted @ 2019-09-03 15:48  Bean_zheng  阅读(158)  评论(0编辑  收藏  举报