码迷,mamicode.com
首页 > 其他好文 > 详细

函数式接口作为参数

时间:2020-07-10 16:59:48      阅读:62      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!