gpt4 book ai didi

java - 带有自定义对象的 ArrayList 我们如何检查列表中的对象是否包含 1 个数据成员值 isCorrect

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

我有一个自定义对象的数组列表。

自定义对象:

public class CustomObject 
{
private String name ;
private int isCorrcet ;
private int icon;
private int disableIcon;
}

对于具有 boolean 对象的ArrayList,我们可以检查是否存在值为true的 boolean 对象。

arrayList.contains(true);

我们如何对自定义对象执行此操作。检查是否存在其数据成员正确且值为 1 的自定义对象。

最佳答案

覆盖 Equals 和 hashCode。这是一个例子

 public final class MethodName {
private final String name;
private final String mobile;

public MethodName(String name, String mobile) {
this.name = name;
this.mobile = mobile;
}

public String getName(){
return name;
}

public String getMobile(){
return mobile;
}

@Override
public boolean equals(Object object) {
boolean result = false;
if (object == null || object.getClass() != getClass()) {
result = false;
} else {
MethodName method = (MethodName) object;
if (this.name == method.getName()
&& this.mobile == mobile.getMobile()) {
result = true;
}
}
return result;
}

@Override
public int hashCode() {
int hash = 3;
hash = 7 * hash + this.name.hashCode();
hash = 7 * hash + this.mobile.hashCode();
return hash;
}
}

关于java - 带有自定义对象的 ArrayList 我们如何检查列表中的对象是否包含 1 个数据成员值 isCorrect,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23779332/

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