java Lambda表达式

1.无参数、无返回值

public class Test {
    public static void main(String[] args) {

        print(()->{
            System.out.println("abc");
        });
    }
    public static void print(Student student){
        student.a();
    }
}

2.

posted @ 2020-07-30 23:09  富坚老贼  阅读(102)  评论(0编辑  收藏  举报