Java核心技術_筆記6-7

1 . repeat(10 , 0 - > System.out.println(" Hello , World ! ")); 要接受此lambda表達式,需要提供函數式接口 public static void repeat ( int n , Runnable action) { for ( int i = 0;i < n;i ++) action.run() ; } action.run()
相關文章
相關標籤/搜索