丰乐

2021年10月5日

interrupt方法

摘要: 如何关闭一个线程 线程生命周期结束 捕获中断信号关闭线程 异常退出 进程假死 interrupt结束线程 interrupt三个方法 void interrupt() static boolean interrupted() boolean isInterrupted() package concu 阅读全文

posted @ 2021-10-05 19:16 李蝉儿 阅读(131) 评论(0) 推荐(0) 编辑

synchronized关键字

摘要: synchronized关键字 1 应用 对方法加锁 对代码块加锁 对class对象加锁 对内部对象加锁 public class Counter { private int count; public synchronized void inrc(){ ++count; } public sync 阅读全文

posted @ 2021-10-05 17:39 李蝉儿 阅读(23) 评论(0) 推荐(0) 编辑

导航