J'ai un List
de HashMap
donc j'utilise List.contains
pour savoir si la liste contient un HashMap
spécifié. Si tel est le cas, je souhaite récupérer cet élément dans la liste. Comment puis-je trouver la position de l'index où se trouve l'élément ?
List benefit = new ArrayList();
HashMap map = new HashMap();
map.put("one", "1");
benefit.add(map);
HashMap map4 = new HashMap();
map4.put("one", "1");
System.out.println("size: " + benefit.size());
System.out.println("does it contain orig: " + benefit.contains(map));
System.out.println("does it contain new: " + benefit.contains(map4));
if (benefit.contains(map4))
//how to get index position where map4 was found in benefit list?