java8 in action:第六章学习:数据流收集数据,自定义收集器找质数

上一章学习如何使用流,这一章继续深入学习流的一些别的知识点。

连接字符串的使用joining()

String str=menu.stream()
                   .map(Dish::getName)
                   .collect(joining());
    
String str2=menu.stream()
                    .map(Dish::getName)
                    .collect(joining(","));

reducing 工厂方法

//第一个参数,指没有元素时的返回值
    //第二个参数,将dish转换成一个的热量int
    //第三个参数,BinaryOperator,求和
    int totalCalories=menu.stream().collect(reducing(0,Dish::getCalories,(i,j) -> i+j));

//热量最高的
    Optional<Dish> maxCalories=menu.stream().collect(
                               reducing((d1,d2) -> d1.getCalories() >d2.getCalories() ?d1:d2));

分组使用Collectors.groupingBy

 Map<Dish.Type, List<Dish>> dishesByType=menu.stream()                                          
                                               .collect(Collectors.groupingBy(Dish::getType));
    
    System.out.println(dishesByType);

public enum CaloricLevel {
    Diet,Normal,Fat
}       

Map<CaloricLevel, List<Dish>> dishesByCaloricLevel=menu.stream().collect(
                                Collectors.groupingBy( dish -> {
                                    if (dish.getCalories()<=400)  return CaloricLevel.Diet;
                                    else if(dish.getCalories()<=700) return CaloricLevel.Normal;
                                    else return CaloricLevel.Fat;
                                }));

多级分组:改进上面的代码。按类型和热量分组。

Map<Dish.Type, Map<CaloricLevel,List<Dish>>> dishesByCaloricLevel=menu.stream().collect(
                                Collectors.groupingBy(Dish::getType,
                                Collectors.groupingBy( dish -> {
                                    if (dish.getCalories()<=400)  return CaloricLevel.Diet;
                                    else if(dish.getCalories()<=700) return CaloricLevel.Normal;
                                    else return CaloricLevel.Fat;
                                })));

记得导入类:import static java.util.stream.Collectors.;就不用写Collectors了。*

分类查询Dish的各个type的总和。

Map<Dish.Type, Long> typesCount=menu.stream().
                            collect(groupingBy(Dish::getType,counting()));

查询每组中热量最高的Dish

Map<Dish.Type, Dish> mostCaloricByType=menu.stream()
                                            .collect(groupingBy(Dish::getType,
                                            collectingAndThen(//第二个收集器
                                            maxBy(Comparator.comparing(Dish::getCalories)), Optional::get)));

分类汇总:

    //查询每一类的总和
    Map<Dish.Type, Integer> totalCaloriesByType=menu.stream().collect(groupingBy(Dish::getType,
            summingInt(Dish::getCalories)));
    System.out.println(totalCaloriesByType);

分区partitioningBy

Map<Boolean, List<Dish>> partitionedMenu2=menu.stream().collect(partitioningBy(dish -> dish.getCalories()>=300));
    System.out.println(partitionedMenu2);

判断质数与非质数

public  static boolean isPrime(int candidate){
    int candidateRoot=(int) Math.sqrt((double)candidate);//优化
    return IntStream.rangeClosed(2, candidateRoot)
                    .noneMatch(i ->candidate%i==0);
}

public static Map<Boolean ,List<Integer>> partitionPrimes(int n){
    return IntStream.rangeClosed(2, n).boxed().collect(partitioningBy(candidate -> isPrime(candidate)));
}

自定义收集器找100以内的质数

import java.util.ArrayList;
import java.util.Collections;
import java.util.EnumSet;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.function.BiConsumer;
import java.util.function.BinaryOperator;
import java.util.function.Function;
import java.util.function.Predicate;
import java.util.function.Supplier;
import java.util.stream.Collector;
import java.util.stream.IntStream;

public class PrimeCollector implements Collector<Integer, Map<Boolean,List<Integer>>, Map<Boolean,List<Integer>>> {

@Override
public Supplier<Map<Boolean, List<Integer>>> supplier() {
    return () -> new HashMap<Boolean,List<Integer>>(){{
        put (true,new ArrayList<Integer>());
        put (false,new ArrayList<Integer>());
    }};
}

@Override
public BiConsumer<Map<Boolean, List<Integer>>, Integer> accumulator() {
    return (Map<Boolean, List<Integer>> acc,Integer candidate) -> {
        acc.get(isPrime(acc.get(true), candidate))
        .add(candidate);
    };
}

@Override
public BinaryOperator<Map<Boolean, List<Integer>>> combiner() {
    return (Map<Boolean, List<Integer>> map1,
            Map<Boolean,List<Integer>> map2) ->{
                map1.get(true).addAll(map2.get(true));
                map1.get(false).addAll(map2.get(false));
                return map1;
            };
}

@Override
public Function<Map<Boolean, List<Integer>>, Map<Boolean, List<Integer>>> finisher() {
    return Function.identity();
}

@Override
public Set<java.util.stream.Collector.Characteristics> characteristics() {
    return Collections.unmodifiableSet(EnumSet.of(Characteristics.IDENTITY_FINISH));
}

public  static boolean isPrime(List<Integer> primes,int candidate){
    int candidateRoot=(int) Math.sqrt((double)candidate);//优化
    return takeWhile(primes, i -> i<= candidateRoot)
            .stream().noneMatch(p -> candidate%p==0);
}

public static<A> List<A> takeWhile(List<A> list,Predicate<A> p){
    int i=0;
    for (A item : list) {
        if (!p.test(item)) {
            return list.subList(0, i);
        }
        i++;
    }
    return list;
}
}

public static Map<Boolean, List<Integer>> partitionPrimesWithCustomCollector(int n){
    return IntStream.rangeClosed(2, n).boxed().collect(new PrimeCollector());
}

写一个简单地代替上面的代码

public static Map<Boolean, List<Integer>> findPrimes(int n){
    return Stream.iterate(2, i -> i+1).limit(n)
        .collect(
                () -> new HashMap<Boolean,List<Integer>>(){{
                    put(true, new ArrayList<Integer>());
                    put(false, new ArrayList<Integer>());
                }},
                (acc,candidate ) -> {
                    acc.get( PrimeCollector.isPrime(acc.get(true), candidate))
                    .add(candidate);
                },
                (map1,map2 ) -> {
                    map1.get(true).addAll(map2.get(true));
                    map2.get(false).addAll(map2.get(false));
                }
                );
}

今天就到这里了。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,711评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,079评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,194评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,089评论 1 286
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,197评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,306评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,338评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,119评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,541评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,846评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,014评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,694评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,322评论 3 318
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,026评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,257评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,863评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,895评论 2 351

推荐阅读更多精彩内容

  • 收集器简介 Collector 函数式编程相对于指令式编程的一个主要优势:你只需要指出希望的结果“做什么”,而不用...
    浔它芉咟渡阅读 816评论 0 4
  • Java8 in action 没有共享的可变数据,将方法和函数即代码传递给其他方法的能力就是我们平常所说的函数式...
    铁牛很铁阅读 1,225评论 1 2
  • 收集器简介 汇总 并行流 欢迎访问本人博客查看原文:http://wangnan.tech 收集器简介 对流调用c...
    GhostStories阅读 1,445评论 1 7
  • 收集器可以简洁而灵活地定义collect用来生成结果集合的标准。更具体地说,对流调用 collect 方法将对流中...
    刘涤生阅读 1,707评论 0 1
  • Int Double Long 设置特定的stream类型, 提高性能,增加特定的函数 无存储。stream不是一...
    patrick002阅读 1,268评论 0 0