Map | Java

 

Descripción

Sintaxis

public interface Map<K,V>

Métodos

Ejemplo

Map<String,String> hm = new HashMap<String,String>();
	   
hm.put("1","Luis");
hm.put("2","Amaya");
hm.put("3","Julio");

// Añadimos un elemento con clave existente. Se sobrescribe su valor
// ya que no puede haber valores duplicados
hm.put("1","Victor");
		   
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

Manual Java

Aprende más sobre Java consultando online o descargando nuestro manual.

Test Java

¿Te atreves a probar tus habilidades y conocimiento en Java con nuestro test?

Vídeos Java

Disfruta también de nuestros artículos sobre Java en formato vídeo. Aprovecha y suscribete a nuestro canal.