自我介绍 项目相关 线程相关  随便实现一个线程写了一个线程,打印一条语句     Thread thread = new Thread(()->{ System.out.println("Hello,World!"); }); thread.start();  * 问,让Thread sleep 1000秒再启动线程会发生什么  Thread thread = new Thread(()->{ System.out.println("Hello,World!"); }); thread.start(); Thread.sleep(); th...