欢迎来到我的博客
摘要: package demo.thread; public class DeadLock { public static void main(String[] args) { Test a = new Test(true); Test b = new Test(false); Thread t1 = new Thread(a); Thread t2 = new... 阅读全文
posted @ 2017-10-16 19:57 Mr_Bean 阅读(118) 评论(0) 推荐(0) 编辑