- 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 ?
- //出错。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)));
- }
- Map<String, List<String>> groupMap = brandList
- .stream()
- .collect(Collectors.groupingBy(Brand::getBrand,Collectors.mapping(Brand::getCastBrand,Collectors.toList())));
-
- Map<String, String> groupMap = brandList.stream()
- .collect(Collectors.toMap(Brand::getBrand,Brand::getCastBrand),(k1,k2)->k1));
这里有个潜在的问题,如果产生了重复的key,会报错。所以需要加后面的(k1,k2)->k1),这个表示如果有冲突,用旧的值。
优雅:
对集合过滤之后,然后针对里面每个元素操作,如果每个元素里有个string,你还可以切割,然后往map里存。
- String s = "a,b,c";
- String[] split = s.split(",");
- List<String> list = Arrays.asList(split);
这个还挺实用的,比如对解密次数的限制,对个数的限制等等。
运行的时候会报错的。