2023-10-27 12:27:47 +00:00
|
|
|
import java.lang.Integer;
|
|
|
|
import java.util.function.Function;
|
|
|
|
|
|
|
|
public class FunctionalInterface {
|
|
|
|
Integer accept(Function<Integer, Integer> f) {
|
|
|
|
return f.apply(20);
|
|
|
|
}
|
|
|
|
|
2024-03-14 12:50:56 +00:00
|
|
|
public Integer m() {
|
2023-10-27 12:27:47 +00:00
|
|
|
var v = accept(i -> {
|
|
|
|
return i * 10;
|
|
|
|
});
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
}
|