1
0
mirror of https://github.com/Snailclimb/JavaGuide synced 2025-08-14 05:21:42 +08:00

Compare commits

..

No commits in common. "86dbcd6499d273ba7e1acd61d19c399cb9e405c2" and "eb674478e305961f597b0e1707d5a279488433ee" have entirely different histories.

View File

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