Java8常用函数

public class CommonFunction {

    public static void main(String[] args) {
        //常用Java8内置接口
        //Consumer 消费类型 接口  demo 对1000进行消费 对这个参数进行操作
        CommonFunction.shop( 1000, new Consumer () {
            @Override
            public void accept(Double aDouble) {
                System.out.println( aDouble );
            }
        } );
        //Supiler  get方式 Supplier供给型接口  无  T    返回类型为T的对象,方法:T get();可用作工
        String code = CommonFunction.getCode( 4, () -> {
            return new Random( 10 ).nextInt();
        } );
        System.out.println(code);

        //Function 函数 操作类型为T的  返回为R
        Integer length = CommonFunction.functionGet( "张三", (str) -> str.length() );
        System.out.println(length);

        //输入参数 然后输入这个参数的判定条件
        boolean predicate = CommonFunction.predicate( "Lucy", (str) -> str.equals( "Lucy" ) );
        System.out.println(predicate);

    }

    //consumer函数
    public static void shop(double money, Consumer  consumer) {
        consumer.accept( money );
    }

    //supplier函数
    public static String getCode(int num, Suppliersupplier){
        String str="";
        for (int i=0;i function){
        return  function.apply( str );
    }
    //Predicate函数 对某个参数是否符合返回boolean值
    public static boolean  predicate(String str,Predicatepredicate){
        boolean test = predicate.test( str );
        return test;
    }


}

其他函数


image.png

public class OtherFunction {

    //接受参数TT  方法 apply  对TT类型参数做二次运算
    public static BinaryOperatorbinaryOperator=(x,y)->x+y;
    //T U R  对 T 和U  参数操作 返回类型为R
    public static BiFunctionbiFunction=(x,y)->{
      return x+y;
    };
    //接受参数为T  对T类型的参数进行操作 返回类型也为T
    public  static UnaryOperatorunaryOperator=(x)->{
        return x.toString();
    };
    //接受参数为T和U   对T和U的参数进行操作 返回类型为void
    public static BiConsumerbiConsumer=(x,y)->{
        System.out.println(x+y);
    };
    //接收参数为Int 类型 对Int类型参数进行计算
    public static ToIntFunctiontoIntFunction=(x)->{
      return   x+1;
    };
    //参数分别为int long double
    public static IntFunctionintegerIntFunction=(x)->{
      return x;
    };

    public static void main(String[] args) {
        Integer apply1 = OtherFunction.binaryOperator.apply( 1, 2 );;
        System.out.println(apply1);
        String sex = OtherFunction.biFunction.apply( "sex", 6 );
        System.out.println(sex);
        String str = OtherFunction.unaryOperator.apply( "str" );
        System.out.println(str);
        OtherFunction.biConsumer.accept( "String",1 );
        int i = OtherFunction.toIntFunction.applyAsInt( 1 );
        System.out.println(i);
        Integer apply = OtherFunction.integerIntFunction.apply( 1 );
        System.out.println("apply"+apply);
    }
}

你可能感兴趣的:(Java8常用函数)