【Java】Map集合中常用方法

|-------------------------------------|---------------|
| 方法名称 | 作用 |
| V put(Key k,V value) | 添加元素 |
| V remove(K key, V value) | 根据键值删除对应的值 |
| void clear() | 清除所有键值元素 |
| boolean containsKey(Object key) | 判断集合中是否包含指定的键 |
| boolean containsValue(Object value) | 判断集合中是否包含指定的值 |
| boolean isEmpty() | 判断集合是否为空 |
| size() | 返回集合中存放元素的个数 |
[Map集合的常用方法]


示例代码

java 复制代码
package com.collection.Demo09;

import java.util.HashMap;
import java.util.Map;

public class Test01 {
    public static void main(String[] args) {
        Map<String, String> hashMap = new HashMap<>();
        System.out.println("========put========");
        hashMap.put("mayikt001", "小明");
        hashMap.put("mayikt002", "xiaojun");
        hashMap.put("mayikt003", "xiaoli");
        hashMap.put("mayikt003", "小王"); //键是不允许重复的,这里并不会报错,而是修改K="003"的值为V="mayikt"
        System.out.println(hashMap);//{mayikt002=xiaojun, mayikt001=小明, mayikt003=小王}
        //注意:上面遍历的顺序并不是put插入的顺序------∴元素存取是散列无序的
        System.out.println("========remove========");
        hashMap.remove("mayikt001"); //返回String类型
//        hashMap.remove("mayikt002","xiaojun");//只有键值对 都 存在才可以删除,返回Boolean类型
        hashMap.remove("xiaojun"); //没有这个键 ,执行并不报错
        System.out.println(hashMap);
        System.out.println("========clean========");
//        hashMap.clear();//清空hashMap集合中所有键值对
        System.out.println(hashMap);//{}
        System.out.println("========containsKey========");
        //判断在 hashMap集合中 是否存在 键值=mayikt002, 返回true/false
        System.out.println(hashMap.containsKey("mayikt002"));//true
        System.out.println("========containsValue========");
        System.out.println(hashMap.containsValue("xiaowang"));//false
        System.out.println(hashMap.containsValue("小王"));//true
        System.out.println(hashMap.containsValue("小明"));//false
        System.out.println("========isEmpty========");
        System.out.println(hashMap.isEmpty());//false
        HashMap<String, String> hashMap1 = new HashMap<>();
        System.out.println(hashMap1.size());//0 hashMap1中元素的个数
        HashMap<String, String> hashMap2 = null;
        System.out.println(hashMap1.isEmpty());//true
//        System.out.println(hashMap2.isEmpty());//报错.NullPointerException
    }
}

下一篇文章:

相关推荐
qq_12498707534 分钟前
基于Spring boot+vue的中医养生系统的设计与实现(源码+论文+部署+安装+调试+售后)
java·vue.js·spring boot·后端·毕业设计
为美好的生活献上中指5 分钟前
java每日精进 5.25【Redis缓存】
java·redis·缓存
YGGP7 分钟前
吃透 Golang 基础:数据结构之切片
开发语言·数据结构·golang
吾日三省吾码18 分钟前
Java 垃圾回收 (GC) 全面解析!
java·开发语言·jvm
楼田莉子20 分钟前
C++学习之STL学习:string类常用接口的模拟实现
开发语言·数据结构·c++·学习·算法·stl
Lu Yao_22 分钟前
【数据结构 -- AVL树】用golang实现AVL树
开发语言·数据结构·golang
前端 贾公子24 分钟前
小程序使用web-view 修改顶部标题 && 安全认证文件部署在nginx
开发语言·前端·javascript
流星蝴蝶没有剑32 分钟前
Python 电脑桌面——工作量监控大屏
开发语言·python
阿蒙Amon35 分钟前
05. C#入门系列【类、结构、枚举】:从青铜到王者的进阶之路
开发语言·c#
比特森林探险记44 分钟前
《Java vs Go:现代编程语言的核心差异与设计哲学对比》
java·开发语言·golang