1
0
mirror of https://github.com/Snailclimb/JavaGuide synced 2025-06-25 02:27:10 +08:00

Merge branch 'main' of github.com:Snailclimb/JavaGuide

This commit is contained in:
guide 2022-09-20 17:48:28 +08:00
commit 8379c0bf77

View File

@ -186,7 +186,7 @@ public class LambdaClass {
}
//函数式接口参数
static void lambdaInterfaceDemo(LambdaInterface i){
System.out.println(i);
i.f();
}
}
```