摘要: 1.Lambda表达式 eg 1: //原始写法 Runnable r1 = new Runnable(){ @Override public void run(){ System.out.println("helloworld"); } } r1.run(); //Lambda表达式 Runnab 阅读全文
posted @ 2022-09-04 14:27 香菇无盐 阅读(33) 评论(0) 推荐(0)