Map集合的特点 键值对映射关系 一个键对应一个值 键不能重复,值可以重复 元素存取无序
Map集合的基本功能【应用】
方法介绍
interface Map<K,V> K:键的类型;V:值的类型1
public class MapDemo01 { public static void main(String[] args) { //创建集合对象 Map<String,String> map = new HashMap<String,String>();
//V put(K key, V value) 将指定的值与该映射中的指定键相关联 map.put("itheima001","林青霞"); map.put("itheima002","张曼玉"); map.put("itheima003","王祖贤"); map.put("itheima003","柳岩");
//输出集合对象 System.out.println(map); } }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
方法名 说明
V put(K key,V value) 添加元素
V remove(Object key) 根据键删除键值对元素
void clear() 移除所有的键值对元素
boolean containsKey(Object key) 判断集合是否包含指定的键
boolean containsValue(Object value) 判断集合是否包含指定的值
boolean isEmpty() 判断集合是否为空
int size() 集合的长度,也就是集合中键值对的个数
|
|