ConcurrentHashMap不支持null
程序员文章站
2022-04-15 21:57:36
@Override public void run(String... args) throws Exception { ConcurrentHashMap concurrentHashMap = new ConcurrentHashMap<>(); concurre ......
@override public void run(string... args) throws exception { concurrenthashmap<string, string> concurrenthashmap = new concurrenthashmap<>(); concurrenthashmap.put(null, "1");//npe concurrenthashmap.put("1", null);//npe concurrenthashmap.get(null);//npe hashmap<string, string> hashmap = new hashmap<>(); hashmap.put(null, "1");//ok hashmap.put("1", null);//ok system.out.println(hashmap.get(null));//"1" system.out.println(hashmap.get("1"));//null }
下一篇: php数据类型-字符串型(string)
推荐阅读
-
解决Node.js mysql客户端不支持认证协议引发的问题
-
本本玩游戏时提示不支持OpenGL
-
必须会的SQL语句(五) NULL数据处理和类型转换
-
JavaScript基本类型值-Undefined、Null、Boolean
-
JavaScript中undefined和null的区别
-
Java String转换时为null的解决方法
-
SQL Server误区30日谈 第6天 有关NULL位图的三个误区
-
spring cloud feign不支持@RequestBody+ RequestMethod.GET报错的解决方法
-
HTML5不支持标签和新增标签详解
-
HTML5不支持frameset的两种解决方法