摘要: 当一个线程处于阻塞状态时,需要提供一种唤醒机制。例: 1 public static void main(String[] args) { 2 Thread t = new Thread(() -> { 3 try { 4 Thread.sleep(5000); 5 } catch (Interru 阅读全文
posted @ 2021-01-25 15:28 walker993 阅读(101) 评论(0) 推荐(0) 编辑