摘要: lock 与 lockInterruptibly比较区别在于:lock 优先考虑获取锁,待获取锁成功后,才响应中断。lockInterruptibly 优先考虑响应中断,而不是响应锁的普通获取或重入获取。详细区别: ReentrantLock.lockInterruptibly允许在等待时由其它线程 阅读全文
posted @ 2020-03-31 17:57 那些年的代码 阅读(4737) 评论(0) 推荐(0) 编辑