Question:使用Supplier接口作为方法参数类型,通过lambda表达式求出int数组中的最大数 public class DemoTest{public ststic int getmax(Supplier <Integer> sup){return sup.get();}public ststic v……