相关链接:
1,Reentrant锁应用场景:http://my.oschina.net/noahxiao/blog/101558
2,
ReentrantLock代码剖析之ReentrantLock.lockInterruptibly
3,
ReentrantLock代码剖析之ReentrantLock.unlock
4,
ReentrantLock代码剖析之ReentrantLock.lock
5,Reentrant Lock Example:
http://robaustin.wikidot.com/reentrantlock
1,trylock
在不阻塞其他线程的情况下,尝试获取锁。
2,trylock(int, TimeUnit)
尝试获取锁,规定超时时长。
3,lockInterruptibly
允许中断的持有锁。