当前位置:   article > 正文

Java List 获取部分组成new list,获取两个list相同/不同的内容

Java List 获取部分组成new list,获取两个list相同/不同的内容

获取List中的一项,组成新的List<Object>

  1. List<String> _outingCntry = list.stream().map(OSzItem::getGroup).
  2. collect(Collectors.toList());

获取List中的多项,组成一个Map(Item1,item2)

  1. List<vo> list = new ArrayList<>();
  2. Map<String, String> map = list.stream().collect(
  3. Collectors.toMap(vo::getxxx, vo::getxxx));

 按照条件获取List,包括相同项,不同项等

获取两个Array / List 等不相同项是比较繁琐的过程,通常需要设置全局变量,然后通过for语句判断是否相等,同时改变全局变量。全局变量没有变化的项即是不同。

这种方式显得代码啰嗦,不符合自然思考习惯,所有可以借助List的stream来解决,代码相对整洁。

  1. List<SalrCntry> _diff = _amtCntrylist.stream().
  2. filter(ele->!_outCntry.contains(ele.getCntry())).
  3. collect(Collectors.toList());

通过remove去除相同,剩下的是不同 

public class FindDifferencesBetweenListsUnitTest { private static final List listOne = Arrays.asList("Jack", "Tom", "Sam", "John", "James", "Jack"); private static final List listTwo = Arrays.asList("Jack", "Daniel", "Sam", "Alan", "James", "George"); }

List<String> differences = new ArrayList<>(listOne); differences.removeAll(listTwo); assertEquals(2, differences.size()); assertThat(differences).containsExactly("Tom", "John");

List<String> differences = listTwo.stream() .filter(element -> !listOne.contains(element)) .collect(Collectors.toList()); assertEquals(3, differences.size()); assertThat(differences).containsExactly("Daniel", "Alan", "George");

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/547634
推荐阅读
相关标签
  

闽ICP备14008679号