JAVA8 List最大值最小值求和平均值以及排序

不管现实多么惨不忍睹,都要持之以恒地相信,这只是黎明前短暂的黑暗而已。不要惶恐眼前的难关迈不过去,不要担心此刻的付出没有回报,别再花时间等待天降好运。真诚做人,努力做事!你想要的,岁月都会给你。JAVA8 List最大值最小值求和平均值以及排序,希望对大家有帮助,欢迎收藏,转发!站点地址:www.bmabk.com,来源:原文

1:对象类型获取最大值、最小值、平均数

public static void main(String[] args) {
		List<User> uList=new ArrayList<User>();
		uList.add(new User(1, "xxx", 1, 18));
		uList.add(new User(2, "zzz", 1, 19));
		uList.add(new User(3, "aaa", 1, 20));
		uList.add(new User(4, "bbb", 1, 21));
		
		
		//最大年龄
		Integer maxAge=uList.stream().mapToInt(User::getAge).max().getAsInt();
		System.out.println("最大年龄为:"+maxAge);
		//最小年龄
		Integer minAge=uList.stream().mapToInt(User::getAge).min().getAsInt();
		System.out.println("最小年龄为:"+minAge);
		//年龄和
		Integer sumAge=uList.stream().mapToInt(User::getAge).sum();
		System.out.println("年龄和为:"+sumAge);
		//年龄平均值
		double avgAge=uList.stream().mapToDouble(User::getAge).average().getAsDouble();
		System.out.println("年龄平均值为:"+avgAge);
		
		double[] d={110.12,12.3,110.23,78.9};
		double minDouble=Arrays.stream(d).min().getAsDouble();
		System.out.println("最小数组值:"+minDouble);
		
		
	}

2:number类型获取最大值、最小值、平均数

public static void main(String[] args) {
  List list  = new ArrayList();
   list.add(new Double(123.23));
   list.add(new Double(33.23));
   list.add(new Double(13.23));
   list.add(new Double(3.23));
   
   System.out.println(list);
   System.out.println("最大值: " + Collections.max(list));
   System.out.println("最小值: " + Collections.min(list));

   List<Integer> lists = list;
   DoubleSummaryStatistics statistics = lists.stream().mapToDouble(Number::doubleValue).summaryStatistics();
   
   System.out.println("最大值:" + statistics.getMax());
   System.out.println("最小值:" + statistics.getMin());
   System.out.println("平均值:" + statistics.getAverage());
   System.out.println("平均值四舍五入:" + Math.round(statistics.getAverage()));
   System.out.println("求和:" + statistics.getSum());
   System.out.println("计数:" + statistics.getCount());
   
 }

3:对对象类型数据的list做排序



//测试数据,请不要纠结数据的严谨性
List<StudentInfo> studentList = new ArrayList<>();
studentList.add(new StudentInfo("李小明",true,18));
studentList.add(new StudentInfo("张小丽",false,21));
studentList.add(new StudentInfo("王大朋",true,19));
studentList.add(new StudentInfo("陈小跑",false,17));


//排序前输出
StudentInfo.printStudents(studentList);
//按年龄排序(Integer类型)   		使用年龄进行升序排序
List<StudentInfo> studentsSortName = studentList.stream().sorted(Comparator.comparing(StudentInfo::getAge)).collect(Collectors.toList());
//排序后输出
StudentInfo.printStudents(studentsSortName);



//排序前输出
StudentInfo.printStudents(studentList);
//按年龄排序(Integer类型)		使用年龄进行降序排序(使用reversed()方法)
List<StudentInfo> studentsSortName = studentList.stream().sorted(Comparator.comparing(StudentInfo::getAge).reversed()).collect(Collectors.toList());
//排序后输出
StudentInfo.printStudents(studentsSortName);



//排序前输出
StudentInfo.printStudents(studentList);
//按年龄排序(Integer类型)		使用年龄进行降序排序,年龄相同再使用身高升序排序
List<StudentInfo> studentsSortName = studentList.stream()
        .sorted(Comparator.comparing(StudentInfo::getAge).reversed().thenComparing(StudentInfo::getHeight))
        .collect(Collectors.toList());
//排序后输出
StudentInfo.printStudents(studentsSortName);

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/160791.html

(0)
飞熊的头像飞熊bm

相关推荐

发表回复

登录后才能评论
极客之音——专业性很强的中文编程技术网站,欢迎收藏到浏览器,订阅我们!