Descripción
Método que devuelve una vista del HashMap en formato colección. Cualquier modificación en la vista afecta directamente al contenido del HashMap.
Sintaxis
public Set<Map.Entry<K,V>> entrySet()
Clase Padre
Ejemplo
Iterator<Entry<Integer,Integer>> it = hm.entrySet().iterator();
while (it.hasNext()) {
Entry<Integer,Integer> e = it.next();
System.out.println(e.getKey() + e.getValue());
}
Líneas de Código
Vídeos Java
Disfruta también de nuestros artículos sobre Java en formato vídeo. Aprovecha y suscribete a nuestro canal.