求数组的最大值,常用函数接口
求数组的最大值
案例:
public class Hanshuz4 {
public static int getMax(Supplier<Integer> supplier){
return supplier.get();
}
public static void main(String[] args) {
int[] arr={1,2,22,44,23,3,77,8};
int max1 = getMax(() -> {
int max = arr[0];
for (int i : arr) {
if (i > max) {
max = i;
}
}
return max;
});
System.out.println(max1);
}
}
看运行结果:
常用函数接口
Consumer接口:是一个消费类型的接口,泛型什么类型就指定什么类型,就可以使用accept方法消费
案例:
public static void me(String name, Consumer<String> consumer){
consumer.accept(name);
}
public static void main(String[] args) {
me("aa",(String name) -> {
System.out.println(name);
});
}
}
运行结果: