码迷,mamicode.com
首页 > 其他好文 > 详细

tryLock & lock 区别

时间:2014-09-22 01:23:41      阅读:417      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   os   strong   for   div   sp   

void lock()

Acquires the lock.

If the lock is not available then the current thread becomes disabled for thread scheduling purposes and lies dormant until the

lock has been acquired.

Implementation Considerations :A Lock implementation may be able to detect erroneous use of the lock, such as an invocation

that would cause deadlock, and may throw an (unchecked) exception in such circumstances. The circumstances and the exception

type must be documented by that Lock implementation.


boolean tryLock()

Acquires the lock only if it is free at the time of invocation.

Acquires the lock if it is available and returns immediately with the value true. If the lock is not available then this method will

return immediately with the value false.

A typical usage idiom for this method would be:

      Lock lock = ...;
      if (lock.tryLock()) {
          try {
              // manipulate protected state
          } finally {
              lock.unlock();
          }
      } else {
          // perform alternative actions
      }

 

This usage ensures that the lock is unlocked if it was acquired, and doesn‘t try to unlock if the lock was not acquired.

tryLock & lock 区别

标签:style   blog   color   io   os   strong   for   div   sp   

原文地址:http://www.cnblogs.com/yuyutianxia/p/3985207.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!