gpt4 book ai didi

java - 列表正在用最新值替换所有旧值

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

我遇到了一个奇怪的问题,我没有找到任何解释,我将在代码中注释如下:

     final List<Map<String, Object>> list = new ArrayList<Map<String, Object>>();

Map<String,Object> map = new HashMap<String,Object>();
//for example payss ArrayList contains `A,B,C,D,E,F,G`
for (int i=0;i<payss.size();i++){

Bitmap contact_pic=pays_drapeaux.get(i);
drawable=new BitmapDrawable(contact_pic);
map.put("pays", payss.get(i).getNom());
Log.i("PAYS",payss.get(i).getNom()); //here it shows correctly the values one by one
map.put("drapeau",drawable);

list.add(map);

}
//here want to show what the list contains after setting it above
for (int i=0;i<list.size();i++){
Log.i("VALUES",list.get(i).values().toString()); //but here it shows G,G,G,G,G,G,G
}

如您所见,我在末尾有一个 list 变量,其所有值都是最近的 payss 值 (G)。知道为什么我会遇到这个问题吗?感谢您的帮助。

最佳答案

您仅使用一个 Map 对象并将其多次添加到列表中。在第一个循环中,条目总是被覆盖(因为只有一个映射)。很明显,只有最后的值才能生存。

关于java - 列表正在用最新值替换所有旧值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14081240/

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