Supplier使用

import java.util.function.Supplier;

/**

  • 求数组元素最大值:

  • 开发步骤:
    
  •     (1)先定义一个方法去获取数组的最大值。
    
  •     (2)创建一个Supplier对象生产一个最大值传给printMax方法。
    
  • 小结:

  • 只需要专注要做什么,求数组最大值即可。
    
  • 结果数据,由提供的方法自动获取自动输出。
    
  • */
    public class SupplierExecDemo02 {

    public static void main(String[] args) {
    //使用函数式接口作为方法的参数。
    printMax(()->{
    int[] arrs={100,35,98,12,123};
    int max=arrs[0];
    for (int ele:arrs)
    if(ele>max)
    max=ele;

             return max;
     });
    

    }

    public static void printMax(Supplier p1){

     int max=p1.get();
     System.out.println("最大值输出:"+max);
    

    }
    }

你可能感兴趣的:(Supplier使用)