摘要: class TestThread implements Runnable { private int i = 1; public void run() { while (true) { synchronized (this) { notify(); System.out.println(Thread 阅读全文
posted @ 2018-12-04 14:21 原来是这样啊 阅读(387) 评论(0) 推荐(0) 编辑