摘要: 一、Object的wait、notify 注: 1、wait、notify必须绑定synchronized使用。 2、wait、notify有先后顺序,必须先等待后唤醒。 3、wait后,会释放锁。 public class TestDemo01 { static Object obj = new 阅读全文
posted @ 2021-12-22 18:42 幻月hah 阅读(211) 评论(0) 推荐(0) 编辑
摘要: 一、什么是中断? 首先, 一个线程不应该由其他线程来强制中断或停止,而是应该由线程自己自行停止。所以,Thread.stop、Thread.suspend、Thread.resume都已经被废弃了。 其次, 在Java中没有办法立即停止一条线程,然而停止线程却显得尤为重要,如取消一个耗时操作。 因此 阅读全文
posted @ 2021-12-22 17:04 幻月hah 阅读(83) 评论(0) 推荐(0) 编辑
摘要: public class test { public static void main(String[] args) { Phone phone = new Phone(); new Thread(() -> { phone.sendEmail(); }).start(); new Thread(( 阅读全文
posted @ 2021-12-22 11:43 幻月hah 阅读(40) 评论(0) 推荐(0) 编辑