Descripción
Retorna el valor del mapa para la clave pasada como parámetro.
Sintaxis
V get(Object key)
Parámetros
- Object key,
Excepciones
ClassCastException, NullPointerException
Clase Padre
Ejemplo
Iterator<Entry<String,String>> it = hm.entrySet().iterator();
while (it.hasNext()) {
Entry<String,String> 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.