服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|JAVA教程|ASP教程|编程技术|正则表达式|

服务器之家 - 编程语言 - JAVA教程 - Java按照List内存储的对象的某个字段进行排序的实例

Java按照List内存储的对象的某个字段进行排序的实例

2020-07-12 15:36jingxian JAVA教程

下面小编就为大家带来一篇Java按照List内存储的对象的某个字段进行排序的实例。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧

关键点:List存储对象实现Comparable类,重写它的compareTo()方法即可

Bean:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package chc;
public class StuVo implements Comparable<StuVo>{
    private String id;
    private String name;
    private Integer age;
    public StuVo(String id, String name, Integer age) {
        this.id=id;
        this.name=name;
        this.age=age;
    }
    public int compareTo(StuVo stu) {
        return this.name.compareTo(stu.getName());
    }
    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 Integer getAge() {
        return age;
    }
    public void setAge(Integer age) {
        this.age = age;
    }
}

Demo:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package chc;
 
import java.util.ArrayList;
import java.util.Collections;
import java.util.Iterator;
import java.util.List;
 
public class ArrayListSortDemo {
    public static void main(String[] args) {
        List<StuVo> stuList=new ArrayList<StuVo>();
        StuVo stu=new StuVo("1","h小明",11);
        stuList.add(stu);
        
        stu=new StuVo("2","d阿熊",15);
        stuList.add(stu);
        
        stu=new StuVo("3","a张三",10);
        stuList.add(stu);
        
        stu=new StuVo("4","b李四",15);
        stuList.add(stu);
    
        Collections.sort(stuList);
        
        Iterator<StuVo> it =stuList.iterator();
        while(it.hasNext()){
            System.out.println(it.next().getName());
        }
    }
}

以上这篇Java按照List内存储的对象的某个字段进行排序的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。

延伸 · 阅读

精彩推荐