标签:ring get style start 接口 system sys name auth
1 /** 2 * @author jliu.l 3 * @2020年7月10日 4 * 5 */ 6 public class Demo01Runnable { 7 8 public static void startThread(Runnable run) { 9 new Thread(run).start(); 10 } 11 12 public static void main(String[] args) { 13 startThread(new Runnable() { 14 15 @Override 16 public void run() { 17 System.out.println(Thread.currentThread().getName()+"-->"+"线程开启"); 18 19 } 20 }); 21 22 startThread(()->{ 23 System.out.println(Thread.currentThread().getName()+"-->"+"线程开启"); 24 }); 25 26 startThread(()-> 27 System.out.println(Thread.currentThread().getName()+"-->"+"线程开启") 28 ); 29 } 30 31 }
标签:ring get style start 接口 system sys name auth
原文地址:https://www.cnblogs.com/jliu-l/p/13280000.html