2018年5月24日

线程的两种创建方式、启动源码解析

摘要: 创建线程的两种方式 1.在Thread子类覆盖的run方法中编写运行代码Thread thread1 = new Thread() { public void run() { while (true) { try { ... 阅读全文

posted @ 2018-05-24 22:00 HeYanxixi 阅读(117) 评论(0) 推荐(0)

导航