java8多线程不带返回值
时间:2020-08-17 17:13:11
收藏:0
阅读:61
public static void main(String[] args) { new Thread(() -> System.out.println(Thread.currentThread().getName())).start(); }
评论(0)