Lambda

作者: ArcherZang | 来源:发表于2019-12-10 12:12 被阅读0次

Lambda表达式的语法

基本语法: (parameters) -> expression
或者:(parameters) ->{ statements; }

    @Test
    public void testLambda(){

        /**基础使用*/
        Runnable runnable = ()->System.out.println("runable" + System.currentTimeMillis());
        Thread thread = new Thread(runnable);
        thread.run();

        List<StringBuilder> list = new ArrayList<>();
        list.add(new StringBuilder("ab"));
        list.add(new StringBuilder("bc"));
        list.add(new StringBuilder("cd"));
        list.forEach((i)->i.append(1));
        list.forEach(System.out::println);

        System.out.println("________fen ge xian ___________");
        /**转换*/
        //no parameter and return
        Supplier<Integer> integerSupplier = () -> 5;
        System.out.println(integerSupplier.get());
        // one parameter and return
        Function<Integer, Integer> integerFunction = x -> 2*x ;
        System.out.println(integerFunction.apply(2));
        // two parameter and return
        BiFunction<Integer, Integer,Integer> integerIntegerBiFunction = (x, y)-> x-y;
        System.out.println(integerIntegerBiFunction.apply(2,2));

        BiFunction<Float, Float,Float> XXBiFunction = (x, y)-> x-y;

        BiFunction<Float, Float, Float> floatFloatBiFunction = (Float x, Float y)-> x-y;
        System.out.println(floatFloatBiFunction.apply(2f,2f));

        //one parameter and void
        Consumer<String> stringConsumer = (x)-> System.out.println(x);
        stringConsumer.accept("ni hao");

        System.out.println("________fen ge xian ___________");

        /**自己定义FunctionInterface*/
        //FunctionInterface   one parameter and void
        TestLambdaVoid lambdaFunctionInterface = ()->System.out.println("wo shi lambda function");
        lambdaFunctionInterface.testCall();

        //FunctionInterface   one parameter and void
        TestLambda testLambda = new TestInterface(1);
        System.out.println(testLambda.testCall(2));
        TestLambda testLambda1 = (i)->String.valueOf(i+1);
        System.out.println(testLambda1.testCall(2));

    }

    public class TestInterface implements TestLambda{

        public int id;

        public TestInterface(int i) {
            this.id = i;
        }

        @Override
        public String testCall(int i) {
            id = id+ i;
            return String.valueOf(id);
        }

    }

@FunctionalInterface
public interface TestLambda {

    String testCall(int i);

}

@FunctionalInterface
interface TestLambdaVoid {
    void testCall();
}
序号 接口 & 描述
1 BiConsumer<T,U> 代表了一个接受两个输入参数的操作,并且不返回任何结果
2 BiFunction<T,U,R> 代表了一个接受两个输入参数的方法,并且返回一个结果
3 BinaryOperator<T> 代表了一个作用于于两个同类型操作符的操作,并且返回了操作符同类型的结果
4 BiPredicate<T,U> 代表了一个两个参数的boolean值方法
5 BooleanSupplier 代表了boolean值结果的提供方
6 Consumer<T> 代表了接受一个输入参数并且无返回的操作
7 DoubleBinaryOperator 代表了作用于两个double值操作符的操作,并且返回了一个double值的结果。
8 DoubleConsumer 代表一个接受double值参数的操作,并且不返回结果。
9 DoubleFunction<R> 代表接受一个double值参数的方法,并且返回结果
10 DoublePredicate 代表一个拥有double值参数的boolean值方法
11 DoubleSupplier 代表一个double值结构的提供方
12 DoubleToIntFunction 接受一个double类型输入,返回一个int类型结果。
13 DoubleToLongFunction 接受一个double类型输入,返回一个long类型结果
14 DoubleUnaryOperator 接受一个参数同为类型double,返回值类型也为double。
15 Function<T,R> 接受一个输入参数,返回一个结果。
16 IntBinaryOperator 接受两个参数同为类型int,返回值类型也为int 。
17 IntConsumer 接受一个int类型的输入参数,无返回值。
18 IntFunction<R> 接受一个int类型输入参数,返回一个结果。
19 IntPredicate 接受一个int输入参数,返回一个布尔值的结果。
20 IntSupplier 无参数,返回一个int类型结果。
21 IntToDoubleFunction 接受一个int类型输入,返回一个double类型结果。
22 IntToLongFunction 接受一个int类型输入,返回一个long类型结果。
23 IntUnaryOperator 接受一个参数同为类型int,返回值类型也为int 。
24 LongBinaryOperator 接受两个参数同为类型long,返回值类型也为long。
25 LongConsumer 接受一个long类型的输入参数,无返回值。
26 LongFunction<R> 接受一个long类型输入参数,返回一个结果。
27 LongPredicate R 接受一个long输入参数,返回一个布尔值类型结果。
28 LongSupplier 无参数,返回一个结果long类型的值。
29 LongToDoubleFunction 接受一个long类型输入,返回一个double类型结果。
30 LongToIntFunction 接受一个long类型输入,返回一个int类型结果。
31 LongUnaryOperator 接受一个参数同为类型long,返回值类型也为long。
32 ObjDoubleConsumer<T> 接受一个object类型和一个double类型的输入参数,无返回值。
33 ObjIntConsumer<T> 接受一个object类型和一个int类型的输入参数,无返回值。
34 ObjLongConsumer<T> 接受一个object类型和一个long类型的输入参数,无返回值。
35 Predicate<T> 接受一个输入参数,返回一个布尔值结果。
36 Supplier<T> 无参数,返回一个结果。
37 ToDoubleBiFunction<T,U> 接受两个输入参数,返回一个double类型结果
38 ToDoubleFunction<T> 接受一个输入参数,返回一个double类型结果
39 ToIntBiFunction<T,U> 接受两个输入参数,返回一个int类型结果。
40 ToIntFunction<T> 接受一个输入参数,返回一个int类型结果。
41 ToLongBiFunction<T,U> 接受两个输入参数,返回一个long类型结果。
42 ToLongFunction<T> 接受一个输入参数,返回一个long类型结果。
43 UnaryOperator<T> 接受一个参数为类型T,返回值类型也为T。

相关文章

网友评论

      本文标题:Lambda

      本文链接:https://www.haomeiwen.com/subject/nneigctx.html