Lock public interface Lock {
void lock();
void lockInterruptibly() throws InterruptedException; // 可以响应中断
2018-07-25