public V put(K key, V value)
: 把指定的键与指定的值添加到Map集合中
public V remove(Object key)
: 把指定的键 所对应的键值对元素 在Map集合中删除,返回被删除元素的值
public V get(Object key)
根据指定的键,在Map集合中获取对应的值
boolean containsKey(Object key)
判断集合中是否包含指定的键
public class Demo05Map {
public static void main(String[] args) {
showPut();
showRemove();
showGet();
showContainsKey();
}
public static void showPut() {
Map<String, String> redVelvet = new HashMap<>();
String irene = redVelvet.put("Irene", "裴珠泫");
String seulgi = redVelvet.put("Seulgi", "姜涩琪");
System.out.println("Irene: " + irene)