java基础
u010010600
这个作者很懒,什么都没留下…
展开
-
command line is too long彻底解决
在.idea的workspace.xml中的PropertiesComponent,增加配置 Add below line into <component name="PropertiesComponent"> from workspace.xml of .idea原创 2021-01-25 10:44:57 · 484 阅读 · 0 评论 -
【java基础】处理map里的null key和unmodifiedmap
应该用remove和get处理,但是如果要操作的是一个unmodifiedmap 那么可以用另外一个类去接受它,处理这个新的类 if(map.containsKey(null)){ Map operateMap = new HashMap(); operateMap.putAll(map); operateMap.put("null", map.get(null)); operateMap.remove(null); } ...原创 2021-01-14 16:07:56 · 491 阅读 · 0 评论