Java8-Stream operation map,reduce

3 篇文章 0 订阅
1 篇文章 0 订阅
package lambda;

import java.util.Arrays;
import java.util.List;
import java.util.stream.IntStream;
import java.util.stream.Stream;

public class StreamOperationExam {
    /**
     *  A map operation applies a function to each element to produce another stream.
     *  The number of elements in the input and output streams is the same.
     *  The operation does not modify the elements of the input stream.
     *
     *  <R> Stream<R> map(Function<? super T,? extends R> mapper)
     *  DoubleStream  mapToDouble(ToDoubleFunction<? super T> mapper)
     *  IntStream     mapToInt(ToIntFunction<? super T> mapper)
     *  LongStream    mapToLong(ToLongFunction<? super T> mapper)
     *
     */
    public static void mapExam() {
        IntStream.rangeClosed(1, 5).map(n -> n * n).forEach(System.out::println);
    }

    /**
     *  Streams map() operation creates a one-to-one mapping.
     *  Streams flatMap() supports one-to-many mapping. 
     *  It maps each element to a stream and then flaten the stream of streams to a stream. 
     */
    public static void flatMapExam() {
        // result:1,2,2,3,3,4
        Stream.of(1, 2, 3).flatMap(n -> Stream.of(n, n + 1)).forEach(System.out::println);

        // convert a stream of strings to a stream of characters
        Stream.of("XML", "Java", "CSS").map(name -> name.chars())
                .flatMap(intStream -> intStream.mapToObj(n -> (char) n)).forEach(System.out::println);

        // flatMaps the stream of string values to a IntStreams, then maps IntStream to Stream of characters
        Stream.of("XML", "Java", "CSS").flatMap(name -> IntStream.range(0, name.length()).mapToObj(name::charAt))
                .forEach(System.out::println);
    }

    /**
     *  The reduce() operation combines all elements in a stream to produce a single value.
     *  The reduce operation takes two parameters called a seed (initial value) and an accumulator.
     *  The accumulator is a function. If the stream is empty, the seed is the result.
     *  The seed and an element are passed to the accumulator, which returns partial result.
     *  And then the partial result and the next element are passed to the accumulator function.
     *
     *  This repeats until all elements are passed to the accumulator.
     *  The last value returned from the accumulator is the result of the reduce operation.
     *
     *  The stream-related interfaces contain two methods called reduce()
     *  and collect() to perform generic reduce operations.
     *
     *  Methods such as sum(), max(), min(), count(), are defined in IntStream,
     *  LongStream, and DoubleStream interfaces.
     *
     *  count() method is available for all types of streams.
     *
     *  The Stream<T> interface contains a reduce() method to perform the reduce operation.
     *  The method has three overloaded versions:
     *
     *  T  reduce(T identity, BinaryOperator<T> accumulator)
     *  <U> U reduce(U identity, BiFunction<U,? super  T,U> accumulator, BinaryOperator<U> combiner)
     *  Optional<T> reduce(BinaryOperator<T> accumulator)
     */
    public static void reduceExam() {
        // takes an identity and an accumulator as arguments
        // and reduces the stream to a single value of the same type
        // T reduce(T identity, BinaryOperator<T> accumulator)
        // <U> U reduce(U identity, BiFunction<U,? super T,U> accumulator, BinaryOperator<U> combiner)
        // Optional<T> reduce(BinaryOperator<T> accumulator)
        List<Integer> numbers = Arrays.asList(1, 2, 3, 4, 5);
        int sum = numbers.stream().reduce(0, Integer::sum);
        System.out.println(sum);
    }

    /**
     * When using the following reduce method, each thread accumulates the partial results using the accumulator.
     * At the end, the combiner is used to combine the partial results from all threads to get the result.
     * <U> U reduce(U identity,
           BiFunction<U, ? super T, U> accumulator,
           BinaryOperator<U> combiner);
     */
    public static void reduceOp() {
        List<Integer> numbers = Arrays.asList(1, 2, 3, 4, 5);
        int id = 1;

        /**
         * print result:
         in peek,n=3
         in accumulator:a=1,b=3
         in peek,n=5
         in accumulator:a=1,b=5
         in peek,n=4
         in accumulator:a=1,b=4
         in combiner1:a=6,b=7
         in combiner1:a=5,b=13
         in peek,n=2
         in accumulator:a=1,b=2
         in peek,n=1
         in accumulator:a=1,b=1
         in combiner1:a=3,b=4
         in combiner1:a=7,b=18
         parallelStream,combiner1,result1=25
         */
        int result1 = numbers.parallelStream().peek(StreamOperationExam::peek).reduce(id,
                StreamOperationExam::accumulator, StreamOperationExam::combiner1);
        System.out.println("parallelStream,combiner1,result1=" + result1);
        System.out.println("-------------");

        /***
         * print result:
         in peek,n=3
         in accumulator:a=1,b=3
         in peek,n=5
         in accumulator:a=1,b=5
         in peek,n=4
         in accumulator:a=1,b=4
         in combiner2:a=6,b=7
         in combiner2:a=5,b=42
         in peek,n=2
         in accumulator:a=1,b=2
         in peek,n=1
         in accumulator:a=1,b=1
         in combiner2:a=3,b=4
         in combiner2:a=12,b=210
         parallelStream,combiner2,result2=2520
         */
        int result2 = numbers.parallelStream().peek(StreamOperationExam::peek).reduce(id,
                StreamOperationExam::accumulator, StreamOperationExam::combiner2);
        System.out.println("parallelStream,combiner2,result2=" + result2);
        System.out.println("-------------");

        /***
         * print result:
         in peek,n=1
         in accumulator:a=1,b=1
         in peek,n=2
         in accumulator:a=3,b=2
         in peek,n=3
         in accumulator:a=8,b=3
         in peek,n=4
         in accumulator:a=19,b=4
         in peek,n=5
         in accumulator:a=42,b=5
         stream,combiner1,result3=89
         */
        int result3 = numbers.stream().peek(StreamOperationExam::peek).reduce(id, StreamOperationExam::accumulator,
                StreamOperationExam::combiner1);
        System.out.println("stream,combiner1,result3=" + result3);
        System.out.println("-------------");

        /**
         * print result:
         in peek,n=1
         in accumulator:a=1,b=1
         in peek,n=2
         in accumulator:a=3,b=2
         in peek,n=3
         in accumulator:a=8,b=3
         in peek,n=4
         in accumulator:a=19,b=4
         in peek,n=5
         in accumulator:a=42,b=5
         stream,combiner2,result4=89
         */
        int result4 = numbers.stream().peek(StreamOperationExam::peek).reduce(id, StreamOperationExam::accumulator,
                StreamOperationExam::combiner2);
        System.out.println("stream,combiner2,result4=" + result4);
        System.out.println("-------------");
    }

    private static int combiner1(int a, int b) {
        System.out.println("in combiner1:a=" + a + ",b=" + b);
        return a + b;
    }

    private static int combiner2(int a, int b) {
        System.out.println("in combiner2:a=" + a + ",b=" + b);
        return a * b;
    }

    private static int accumulator(int a, int b) {
        System.out.println("in accumulator:a=" + a + ",b=" + b);
        return 2 * a + b;
    }

    private static void peek(int n) {
        System.out.println("in peek,n=" + n);
    }

    public static void main(String[] args) {
        reduceOp();
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值