摘要: 上篇文章讲述了创建线程的常用方式 本篇主要分析一下Thread和Runnable两种方式创建线程的区别及联系 ▶Thread类实现了Runable接口。 ▶都需要重写里面Run方法。 ▶Thread方式不支持多继承,Runnable方式支持多个实现 ▶Runnable更容易实现资源共享,能多个线程同 阅读全文
posted @ 2018-10-13 11:53 DiligentCoder 阅读(281) 评论(0) 推荐(0) 编辑