Java根据list中对象的属性找出list重复数据或去除list重复数据

2022-02-05 00:00:00 数据 重复 去除

在实际开发中,经常会遇到需要找出(删除)一个list中某些元素的属性相同的元素,或者两个list中某些元素的属性相等的元素,这种方法很多,这里整理列出一些: 废话不说,上代码,有注释掉的你们自己看

import java.util.ArrayList;

import java.util.HashMap;

import java.util.List;

import java.util.Map;

public class Test {

public static void main(String[] args) {
	List<Student> testList = new ArrayList<Student>();
	testList.add(new Student("张一"));
	testList.add(new Student("张二"));
	testList.add(new Student("张三"));
	testList.add(new Student("老王"));
	testList.add(new Student("张四"));
	testList.add(new Student("张五"));
	testList.add(new Student("张六"));
	testList.add(new Student("张七"));
	testList.add(new Student("老王"));
	testList.add(new Student("张八"));
	testList.add(new Student("张九"));
	testList.add(new Student("老王"));

	List<Student> repeatList = new ArrayList<Student>();//用于存放重复的元素的list

	// 以一种方法:两个循环(最蠢的方法)
	for (int i = 0; i < testList.size() - 1; i++) {
		for (int j = testList.size() - 1; j > i; j--) {
			if (testList.get(j).getStuName().equals(testList.get(i).getStuName())) {
				repeatList.add(testList.get(j));//把相同元素加入list(找出相同的)
	
				testList.remove(j);//删除重复元素
			}
		}
	}
复制代码

// for(Student s : repeatList){ // System.out.println(“相同的元素:” + s.getStuName()); // }

	//第二种方法:利用map.containsKey()
	Map<String, Integer> map = new HashMap<>(); 
	for(Student s : testList){
		//1:map.containsKey()   检测key是否重复
		if(map.containsKey(s.getStuName())){
			repeatList.add(s);//获取重复的学生名称
			
			Integer num = map.get(s.getStuName());
			map.put(s.getStuName(), num+1);
		}else{
			map.put(s.getStuName(), 1);
		}
		//2: 这个key是不是存在对应的value(key是否在map中)
复制代码

// Integer count = map.get(s.getStuName());//这种写法也可以,异曲同工

// if (count == null) {

// map.put(s.getStuName(), 1);

// } else {

// map.put(s.getStuName(), (count + 1)); // } } // for(Student s : repeatList){

// System.out.println(“相同的元素:” + s.getStuName());

// }

// for(Map.Entry<String, Integer> entry : map.entrySet()){

// System.out.println(“学生:” + entry.getKey() + “的名字出现了:” + entry.getValue() + “次”);

// }

	//第三种方法:contains()方法  这个个人认为有一定的局限性,个人理解哈
    List<Integer> repeatList1 = new ArrayList<>();  
    List<Integer> list = new ArrayList<>();  
    list.add(1);
    list.add(2);
    list.add(1);
    list.add(3);
    list.add(4);
    list.add(1);
    list.add(5);
    for(int i=0;i<list.size();i++){  
        if(!repeatList1.contains(list.get(i))){  
        	repeatList1.add(list.get(i));  
        }  
    } 
    for(Integer s : repeatList1){
		System.out.println(s);
	}
}
复制代码

}

Student类: public class Student {

public Student(String stuName){
	this.stuName = stuName;
}

private String 	stuName;

public String getStuName() {
	return stuName;
}

public void setStuName(String stuName) {
	this.stuName = stuName;
}
复制代码

}

这个是java8的stream,由于我用的还是jdk7 这里就找了一个 给你们当例子看,有兴趣可以看stream相关的知识,很强大的功能

List list = Arrays.asList(“123”, “1234”, “12345”, “123456”, “1234567”, “122222223”, “123”, “1234”, “2422”); Map<String, Long> collect = list.stream().collect(Collectors.groupingBy(Function.identity(), Collectors.counting())); System.out.println(collect);

就列出这么几种,应该够用了!!!

喜欢的话可以关注下!!! 每天更新!!!

也可以加我的Java进阶群:5 2 9 7 2 2 4 0 6

转载于:https://juejin.im/post/5cfca79551882576be27633b

    原文作者:weixin_34008805
    原文地址: https://blog.csdn.net/weixin_34008805/article/details/91417381
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。

相关文章