Crear un hashmap de array no funciona
AUTOR PREGUNTA #1
Primero he creado un array con toda la data que quiero, tengo un bucle y lo llamo cada vez que se ha creado un elemento del mismo:
HashMap hashmap_of_values = new HashMap(); for (int i = 0; i<100; i++) { Set uniqie_T_cache = new HashSet(T_cache_local_loop); hashmap_of_values.put(i, new ArrayList(uniqie_T_cache)); }
Luego pudiese extraer la data de la siguiente forma:
List t = new ArrayList(); t.add(hashmap_of_values.get(i));
Pero mi programa falla y no se exactamente porque. Alguien me podria decir que estoy haciendo mal? Gracias
-
¿Tienes la misma pregunta? Yo también
Esto también te interesa!
PREGUNTAS SIMILARES
#2
t.addAll(hashmap_of_values.get(i));
#4
List t = (List) hashmap_of_values.get(i);
O lo siguiente:
List t = new ArrayList((List) hashmap_of_values.get(i));