赞
踩
之前一直用Python进行刷题,现在改用Java进行刷题,但有些操作还不太熟悉,下面记录一下HashMap的基本操作。
HashMap<Integer,Integer> Recruit = new HashMap<>();//新建哈希表Recruit
上面只能举例,HashMap还可以新建其类型的键值对。
HashMap<Integer,Integer> Recruit = new HashMap<>();//新建哈希表Recruit
Recruit.put(1,1);//添加键值对
Recruit.put(2,2);//添加键值对
System.out.println(Recruit.size());
上面代码将输出2,表示Recruit中有2个元素。
public int size() {
return size;
}
HashMap源码中对size函数的定义,调用size函数即会返回HashMap中元素的个数。
HashMap<Integer,Integer> Recruit1 = new HashMap<>();//新建哈希表Recruit1
Recruit1.put(2,2);//添加键值对
System.out.println(Recruit1.isEmpty());
HashMap<Integer,Integer> Recruit2 = new HashMap<>();//新建哈希表Recruit2
System.out.println(Recruit2.isEmpty()
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。