线程的状态: 1.初始状态 NEW 线程刚被new出来,没有调用start()方法 2.运行状态 Runnable 处于可运行状态,在jvm里执行,可能在等待来自操作系统的其他资源 //Runnable状态 Thread thread = new Thread(()->{ try { System