Function<Integer, Integer> f1 = arg -> arg*3; System.out.println(f1.apply(2));//6
Function<T, R>T是传参类型,R是返回值类型。使用apply方法执行