首页 > 编程语言 > 详细

Java ArrayList对象集合去重

时间:2019-09-30 17:14:02      阅读:175      评论:0      收藏:0      [点我收藏+]
import java.util.ArrayList;
import java.util.Iterator;

public class StringSampleDemo {
    public static void main(String[] args) {
        ArrayList al = new ArrayList();
        al.add(new Student("zhangsan1", 20, "男"));
        al.add(new Student("zhangsan1", 20, "男"));
        al.add(new Student("lilin1", 21, "女"));
        al.add(new Student("lilin1", 21, "女"));
        al.add(new Student("lisi", 25, "男"));

        al = getUniqueList(al);

        for (Object o : al) {
            Student s = (Student) o;
            System.out.println(s.getName() + "...." + s.getAge() + "...." + s.getSex());
        }

        /** 去重后的集合数据
         *
         * zhangsan1....20....男
         * lilin1....21....女
         * lisi....25....男
         */

    }

    /**
     * 去除重复对象
     *
     * @param al
     * @return
     */
    public static ArrayList getUniqueList(ArrayList al) {
        ArrayList tempAl = new ArrayList();

        Iterator it = al.iterator();
        while (it.hasNext()) {
            Object obj = it.next();
            if (!tempAl.contains(obj)) //不存在则添加
            {
                tempAl.add(obj);
            }
        }
        return tempAl;
    }
}


class Student {
    private String name;
    private int age;
    private String sex;

    public Student(String name, int age, String sex) {
        this.name = name;
        this.age = age;
        this.sex = sex;
    }

    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;
    }

    public String getSex() {
        return sex;
    }

    public void setSex(String sex) {
        this.sex = sex;
    }

    /**
     * 重点是重写比较方法
     *
     * @param obj
     * @return
     */
    @Override
    public boolean equals(Object obj) {
        if (obj instanceof Student) {
            Student s = (Student) obj;
            return this.name.equals(s.name) && this.age == s.age && this.sex.equals(s.sex);
        } else {
            return false;
        }
    }
}

  

Java ArrayList对象集合去重

原文:https://www.cnblogs.com/smartsmile/p/11613006.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!