gpt4 book ai didi

java - 如何通过属性查找ArrayList中的对象

转载 作者:行者123 更新时间:2023-12-01 18:29:24 25 4
gpt4 key购买 nike

如何找到对象,Carnet ,在 ArrayList<Carnet>了解其属性codeIsin .

List<Carnet> listCarnet = carnetEJB.findAll();

public class Carnet {

private String codeTitre;
private String nomTitre;
private String codeIsin;

// Setters and getters

}

最佳答案

Java8中,您可以使用流:

public static Carnet findByCodeIsIn(Collection<Carnet> listCarnet, String codeIsIn) {
return listCarnet.stream().filter(carnet -> codeIsIn.equals(carnet.getCodeIsin())).findFirst().orElse(null);
}

此外,如果您有许多不同的对象(不仅仅是 Carnet),或者您想通过不同的属性(不仅仅是 cideIsin)找到它,您可以构建一个实用程序类,将这个逻辑封装在其中:

public final class FindUtils {
public static <T> T findByProperty(Collection<T> col, Predicate<T> filter) {
return col.stream().filter(filter).findFirst().orElse(null);
}
}

public final class CarnetUtils {
public static Carnet findByCodeTitre(Collection<Carnet> listCarnet, String codeTitre) {
return FindUtils.findByProperty(listCarnet, carnet -> codeTitre.equals(carnet.getCodeTitre()));
}

public static Carnet findByNomTitre(Collection<Carnet> listCarnet, String nomTitre) {
return FindUtils.findByProperty(listCarnet, carnet -> nomTitre.equals(carnet.getNomTitre()));
}

public static Carnet findByCodeIsIn(Collection<Carnet> listCarnet, String codeIsin) {
return FindUtils.findByProperty(listCarnet, carnet -> codeIsin.equals(carnet.getCodeIsin()));
}
}

关于java - 如何通过属性查找ArrayList中的对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60187105/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com