20230904工作心得:集合应该如何优雅判空?

1 集合判空

        List<String> newlist = null;
        //空指针
        if( !newlist.isEmpty()){
           newlist.forEach(System.out::println);
        }
        //空指针
        if(newlist.size()>0 && newlist!=null){
            newlist.forEach(System.out::println);
        }
        //可行
        if(newlist!=null && newlist.size()>0){
           newlist.forEach(System.out::println);
        }
        //可行 
        if(CollectionUtils.isEmpty(newlist)){
            System.out.println("newlist为空");
        }

其中CollectionUtils是springframework里的方法.

2 Hibernate findAllByXX ?

3 list 转 map 出错。

        //出错。brandList有值,但是无法传递给groupMap 
        Map<String, String> groupMap = new HashMap<>();
        if(!brandList.isEmpty()){
            groupMap = brandList.stream().collect(Collectors.toMap(Brand::getBrand,Brand::getCastBrand));
        }

        //最后用了这个方法
        Map<String, String> groupMap = new HashMap<>();
        if(!CollectionUtils.isEmpty(groupMap)){
            groupMap.putAll(brandList.stream().collect(Collectors.toMap(Brand::getBrand,Brand::getCastBrand)));
        }

4 list的lambda操作

1对多映射:根据手机号分组,拿手机号对应的一批数据

Map<String, List<String>> groupMap = brandList
.stream()
.collect(Collectors.groupingBy(Brand::getBrand,Collectors.mapping(Brand::getCastBrand,Collectors.toList())));

1对1映射:相当于把一个集合数据,从中抽离出两列key-value

 Map<String, String> groupMap = brandList.stream()
.collect(Collectors.toMap(Brand::getBrand,Brand::getCastBrand),(k1,k2)->k1));

这里有个潜在的问题,如果产生了重复的key,会报错。所以需要加后面的(k1,k2)->k1),这个表示如果有冲突,用旧的值。

优雅:

对集合过滤之后,然后针对里面每个元素操作,如果每个元素里有个string,你还可以切割,然后往map里存。

5 map里getOrDefault(key,default).有效防止空指针

6 string 切完之后 是数组。然后再 arrays.aslist 变成 list

7 巧用redis 做次数限制。

这个还挺实用的,比如对解密次数的限制,对个数的限制等等。

8 数据库里别用limit作为字段名,limit是关键字啊哥哥。

相关推荐
一只码代码的章鱼29 分钟前
排序算法 (插入,选择,冒泡,希尔,快速,归并,堆排序)
数据结构·算法·排序算法
青い月の魔女1 小时前
数据结构初阶---二叉树
c语言·数据结构·笔记·学习·算法
我要出家当道士1 小时前
Nginx单向链表 ngx_list_t
数据结构·nginx·链表·c
林的快手2 小时前
209.长度最小的子数组
java·数据结构·数据库·python·算法·leetcode
从以前2 小时前
准备考试:解决大学入学考试问题
数据结构·python·算法
.Vcoistnt2 小时前
Codeforces Round 994 (Div. 2)(A-D)
数据结构·c++·算法·贪心算法·动态规划
ALISHENGYA3 小时前
全国青少年信息学奥林匹克竞赛(信奥赛)备考实战之分支结构(实战训练三)
数据结构·c++·算法·图论
2401_858286117 小时前
117.【C语言】数据结构之排序(选择排序)
c语言·开发语言·数据结构·笔记·算法·排序算法
td爆米花7 小时前
C#冒泡排序
数据结构·算法·排序算法
执着的小火车8 小时前
02-18.python入门基础一基础算法
数据结构·python·算法·排序算法