赞
踩
- List<Student> Students= new ArrayLiat<>();
- //获取Students对象age属性,distinct()去重,count()获取去重后的集合数
- long count = Students.stream().map(Students::getAge).distinct().count();
- //判断(如果全部相等:count应该等于1)
- if (count != 1) {
- return System.out.println("该集合Students对象age属性:存在重复值");
- }
- return System.out.println("该集合Students对象age属性:全部相等");
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。