gpt4 book ai didi

java - 重复的对象被添加到列表中

转载 作者:塔克拉玛干 更新时间:2023-11-01 22:43:13 25 4
gpt4 key购买 nike

<分区>

在将对象添加到列表时,我能够看到该对象正在替换列表中的所有值。

请检查下图并注意 for 循环中的代码以查找列表中对象的重复项。

public static void main(String args[]) {

ArrayList<Modelclass> al = new ArrayList<Modelclass>();

Modelclass obj = new Modelclass();
for (int i = 0; i < 10; i++) {

obj.setName(2 + i);
obj.setRoolno(4 + i);
System.out.println(obj);

//if (!al.equals(obj)) {

al.add(obj);
System.out.println(obj.getName() + "" + obj.getRoolno());

//}

}
}

here

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