zoukankan      html  css  js  c++  java
  • 函数式遍程----Function

    Consumer定义

    @FunctionalInterface
    public interface Consumer<T> {
    
        void accept(T t);
    
        default Consumer<T> andThen(Consumer<? super T> after) {
            Objects.requireNonNull(after);
            return (T t) -> { accept(t); after.accept(t); };
        }
    }

    其核心的方法如下:

    void accept(T t){

    }

    default Consumer andThen(Consumer<? super T> after){

    }

    Consumer在处理的时候是没有返回值

    Function<T,R>  

    @FunctionalInterface
    public interface Function<T, R> {
    
        /**
         * Applies this function to the given argument.
         *
         * @param t the function argument
         * @return the function result
         */
        R apply(T t);
    }
    public int compute(int a, Function<Integer, Integer> function) {
        int result = function.apply(a);
        return result;
    }
    test.compute(5,value -> value * value) //25 计算平方
    test.compute(5,value -> value + value) //10 求和
    test.compute(5,value -> value - 2) //3  
  • 相关阅读:
    活动安排问题
    CodeForces
    HDU
    HDU
    HihoCoder
    二分签到题--二分入门
    并查集,最小生成树
    spark和 mapreduce的比较
    SparkSQL--数据源Parquet的加载和保存
    SparkSQL -DataFrame与RDD的互转
  • 原文地址:https://www.cnblogs.com/dousil/p/12859426.html
Copyright © 2011-2022 走看看