1)Stream - Collect1-1)Boxed1-2) collect1-3) Reducing1-4)Reducing1-5) Groupcollect의 다양한 함수 1) @ @ Stream . Collect @@ 1-1 ) Boxed * Box : 기본자료형==> 객체화 * asDoubleStream() : IntStream => DoubleStream * boxed() : IntStream -> Streampackage ex10_collect;import java.util.Arrays;import java.util.stream.IntStream;import java.util.stream.Stream;public class Ex01_Boxed { static int sum = 0; public s..