java如何对List集合中的元素进行排序(请收藏)

在java开发中有时候我们需要对List集合中的元素按照一定的规则进行排序,比如说有个Person的集合,我们要根据Person的age属性进行排序输出,这就需要用到Java中提供的对集合进行操作的工具类Collections,其中的sort方法,大家看虾米哥的例子如下:

1.Person类:

package www.itxm.cn;public class Person {private String id;private String name;private int age;public Person(String id, String name, int age) {super();this.id = id;this.name = name;this.age = age;}public String getId() {return id;}public void setId(String id) {this.id = id;}public String getName() {return name;}public void setName(String name) {this.name = name;}public int getAge() {return age;}public void setAge(int age) {this.age = age;}
}

 2.排序类:

package www.itxm.cn;import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;public class PersonSort {public static void main(String[] args) {List<Person> plist = new ArrayList<Person>();  //创建3个Person对象,年龄分别是32、20、25,并将他们依次放入List中  Person p1 = new Person("0001","zhangsan",32);Person p2 = new Person("0002","lisi",20);Person p3 = new Person("0003","wangwu",25);plist.add(p1);plist.add(p2);plist.add(p3);System.out.println("排序前的结果:"+plist);Collections.sort(plist, new Comparator<Person>(){/** int compare(Person p1, Person p2) 返回一个基本类型的整型,* 返回负数表示:p1 小于p2,* 返回0 表示:p1和p2相等,* 返回正数表示:p1大于p2*/public int compare(Person p1, Person p2) {//按照Person的年龄进行升序排列if(p1.getAge() > p2.getAge()){return 1;}if(p1.getAge() == p2.getAge()){return 0;}return -1;}});System.out.println("排序后的结果:"+plist);  }
}

 3.总结:

本排序最核心的Collections工具类的使用,牢牢掌握,遇到排序的时候不会手忙脚乱。

转载于:https://www.cnblogs.com/wangyayun/p/7852075.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/415292.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

cesium面板动态显示并跟随移动

我的需求&#xff0c;首先显示一个billboard&#xff0c;点击billboard后&#xff0c;在旁边显示一个div面板&#xff0c;并且该面板随着地图拖拽也能进行相对运动。 概要实现步骤&#xff1a; 1、自定义div面板&#xff0c;面板需要设置id值 2、使用我自己定义的函数&#…

工作169:删除操作

this.$confirm(你正在进行删除操作, 提示, {confirmButtonText: 确定,cancelButtonText: 取消,type: warning}).then(()>{deleteAction(path.join(this.url.delete, record.id))this.$message.success(res.msg);}).catch((err)>{this.$message.warning(err);})

Android 设置view透明度,广告标题透明背景

android:alpha"0.8" <ImageViewandroid:layout_width"match_parent"android:layout_height"match_parent"android:alpha"0.8"android:background"drawable/bantouheibg"/> colors<!-- 透明色 --> <color na…

bootstrapselect使用 Bootstrap's dropdowns require Popper.js

虽然我目前喜欢用vue&#xff0c;但是有一些项目会用bootstrap进行配合。 下面介绍一款bootstrap生态链的插件&#xff1a;bootstrapselect。 官网地址&#xff1a;https://www.bootstrapselect.cn/ 特别要注意一点&#xff0c;引入bootstrapselect前要先引入popper.js。 由…

Android recycleview实现混合itemview,以及recycleview添加头部尾部

需要引入的module链接&#xff1a;https://pan.baidu.com/s/1kcVye2vT4M0mdCtzYpUVKw 添加module方法步骤&#xff1a;https://blog.csdn.net/meixi_android/article/details/84655666 1、主要adapter /*** 作者&#xff1a;created by meixi* 邮箱&#xff1a;131647168401…

工作170:删除做个判断操作 成功删除 取消取消

this.$confirm(你正在进行删除操作, 提示, {confirmButtonText: 确定,cancelButtonText: 取消,type: warning}).then((res)>{deleteAction(path.join(this.url.delete, record.id))this.$message.success(res);}).catch((err)>{this.$message.warning(err);})

docker 报错 Container is not running

我在运行docker exec -it 56b90db5253e /bin/bash报错。 出现这个问题&#xff0c;是因为Container容器之前已经启动过了 需要执行docker start 56b90db5253e就可以解决了。

Android侧滑删除-RecyclerView轻松实现高效的侧滑菜单

1 删除整个RecyclerView hisList.clear(); hisAdapter.notifyDataSetChanged(); mScanListAdapter.setNewData(null); 刚开始只是使用了list.clear() 方法就是没有效果&#xff0c;最后想起来了忘记了notifyDataSetChanged 刷新了 2 RecyclerView 删除Item hisList.remov…

返回数组中的最大数 -freeCodeCamp

找出多个数组中的最大数 右边大数组中包含了4个小数组&#xff0c;分别找到每个小数组中的最大值&#xff0c;然后把它们串联起来&#xff0c;形成一个新数组。 给出的数组如下&#xff1a; largestOfFour([[4, 5, 1, 3], [13, 27, 18, 26], [32, 35, 37, 39], [1000, 1001, 85…

前端学习(2645):懂代码之header表头页之未读消息

<!-- 消息中心 --><div class"btn-bell"><el-tooltipeffect"dark":content"message?有${message}条未读消息:消息中心"placement"bottom"><router-link to"/tabs"><i class"el-icon-bell&…

cesium事件简单全面描述

我在开发中&#xff0c;需要一个功能&#xff0c;时时获取经纬度和相机角度。需要对cesium中对事件实现监听。 cesium事件主要几大类类型&#xff1a; 1、鼠标事件&#xff1a;ScreenSpaceEventType 2、键盘事件&#xff1a;KeyboardEventModifier 3、相机事件&#xff1a;Ca…

HTML标签总结

一、文字1.标题文字 <h#>..........</h#> #1~6&#xff1b;h1为最大字&#xff0c;h6为最小字2.字体变化 <font>..........</font> 【1】字体大小 <font size#>..........</font> #1~7&#xff1b;数字愈大字也愈大 【2】指定字型 <fon…

Android 取消返回键返回事件,返回桌面,再按一次退出程序,双击事件

mainactivity返回桌面代码&#xff1a; activity下添加如下代码即可: Override public void onBackPressed() {Intent home new Intent(Intent.ACTION_MAIN);home.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);home.addCategory(Intent.CATEGORY_HOME);startActivity(home);} …

js cesium 中弧度、角度转化

参考如下代码&#xff1a; const { heading, pitch, roll } viewer.camera; console.log({ heading, pitch, roll }); // 弧度 const radians Cesium.Math.toRadians(heading) console.log(radians) // 角度 const degrees radians * (180 / Math.PI); console.log(degrees…

一个jdbc connection连接对应一个事务

Spring保证在methodB方法中所有的调用都获得到一个相同的连接。在调用methodB时&#xff0c;没有一个存在的事务&#xff0c;所以获得一个新的连接&#xff0c;开启了一个新的事务。 Spring保证在methodB方法中所有的调用都获得到一个相同的连接。在调用methodB时&#xff0c;没…

工作173:一级控制二级菜单的变化

1第一步 组件封装 利用$emit触发 触发结束 页面进行渲染 <!--封装部门选择的插件 需要的组件 子组件--> <template><el-select :value"value" placeholder"请选择所属部门" change"handleChange"><el-optionv-for&quo…

cesium根据输入高度设置相机camera视角高度

核心代码&#xff1a; camera.setView({destination: Cesium.Cartesian3.fromRadians(viewer.camera.positionCartographic.longitude, viewer.camera.positionCartographic.latitude, n.height),orientation: {heading: Cesium.Math.toRadians(n.heading),pitch: Cesium.Math…

RecyclerView跳转到指定位置,RecyclerView上下滑动监听,RecyclerView滑动速度

1、RecyclerView跳转到指定位置 只需调用recycleview的置顶方法&#xff1a; recyclerView.scrollToPosition(15); 如果你需要让第15item在屏幕居中&#xff0c;只需吧scrollToPosition参数变小即可: 如&#xff1a; recyclerView.scrollToPosition(12);或 recyclerView.…

工作169:vue项目报错[Vue warn]: Property “visible“ must be accessed with “$data.visible“ because properties

vue项目中报错&#xff1a; [Vue warn]: Property "visible" must be accessed with "$data.visible" because properties starting with "$" or "_" are not proxied in the Vue instance to prevent conflicts with Vue internalsS…