当前位置:   article > 正文

java判断list集合里的属性值是否与传入值相等_java根据list中的对象的属性值是否相等

java根据list中的对象的属性值是否相等
import lombok.Data;

import java.util.ArrayList;
import java.util.List;

@Data
public class MyTest {
    public String name;
    public String sex;

    public MyTest(String name, String sex) {
        this.name = name;
        this.sex = sex;
    }

    public static void main(String[] args) {
        List<MyTest> list = new ArrayList();
        list.add(new MyTest("小明","男"));
        list.add(new MyTest("小红","女"));
        list.add(new MyTest("小丽","女"));
        System.err.println("==="+list.size());

        String param = "小明";
        //法1:判断list集合里的属性值是否与传入值相等
        for (MyTest test : list) {
            if (test.getName().equals(param)){
                System.err.println(test+"名字重复");
            }
        }

        //法2:判断list集合里的属性值是否与传入值相等
        if (list.size() > 0){
            boolean flag = list.stream().anyMatch(obj -> obj.getName().equals(param));
            if (flag){
                System.err.println("名字重复--");
            }
        }
    }
}
  • 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
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/310871?site
推荐阅读
相关标签
  

闽ICP备14008679号