Descripción
Sintaxis
public interface Map<K,V>
Métodos
- clear()
- compute()
- computeIfAbsent()
- computeIfPresent()
- containsKey()
- containsValue()
- copyOf()
- entry()
- entrySet()
- equals()
- forEach()
- get()
- getOrDefault()
- hashCode()
- isEmpty()
- keySet()
- merge()
- of()
- ofEntries()
- put()
- putAll()
- putIfAbsent()
- remove()
- replace()
- replaceAll()
- size()
- values()
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
Vídeos Java
Disfruta también de nuestros artículos sobre Java en formato vídeo. Aprovecha y suscribete a nuestro canal.