摘要:
1.创建线程的方式 1.继承Thread类创建线程 2.实现Runnable接口创建线程 3.使用Callable和Future创建线程 (参考:https://www.cnblogs.com/3s540/p/7172146.html) 2.Executor框架——将任务的提交过程和执行过程解耦 / 阅读全文
摘要:
1.中断:每个线程都有一个boolean类型的中断状态,中断是一种协作机制。 public class Thread{ //中断目标线程 public void interrupt(){...} //返回目标线程的中断状态 public boolean isInterrupted(){...} // 阅读全文