方法引用_通过类名引用静态的成员方法
方法引用_通过类名引用静态的成员方法
定义一个抽象方法,传递一个整数,对整数进行绝对计算进行返回
案例:
//定义一个函数式的接口
public interface Printable {
int sum(int number);
}
public class PrintableImpl {
public static int prinUpper(Integer number, Printable printable){
return printable.sum(number);
}
public static void main(String[] args) {
int i = prinUpper(-10, Math::abs);
System.out.println(i);
}
}
实现接口调用方法使用Math数学方法计算绝对值返回输出结果: