我就废话不多说了,大家还是直接看代码吧~
1
2
3
4
5
6
|
public static void main(String[] args) { Map<String, String> a = new HashMap<String, String>(); String string = a.get( "a111" ); System.out.println(string); } |
在Map集合中,get一个不存在的值,不会抛出异常,获得的返回值为null。
补充知识:map中get不存在的key和containsKey方法
在Map集合中,get一个不存在的值,不会抛出异常,获得的返回值为null。
1
2
3
4
5
6
|
public static void main(String[] args) { Map<String, String> a = new HashMap<String, String>(); String string = a.get( "a111" ); System.out.println(string); } |
Map集合允许值对象为null,并且没有个数限制,所以当get()方法的返回值为null时,可能有两种情况,一种是在集合中没有该键对象,另一种是该键对象没有映射任何值对象,即值对象为null。因此,在Map集合中不应该利用get()方法来判断是否存在某个键,而应该利用containsKey()方法来判断,例如下面的例子。
下面的代码首先创建一个由HashMap类实现的Map集合,并依次向Map集合中添加一个值对象为null和“马先生”的映射;然后分别通过get()和containsKey()方法执行这两个键对象;最后执行一个不存在的键对象。关键代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
import java.util.HashMap; import java.util.Map; public class TestMapKey { public static void main(String[] args) { Map<Integer, String> map = new HashMap<Integer, String>(); map.put( 220180 , null ); map.put( 220181 , "马先生" ); System.out.println( "get()方法的返回结果:" ); System.out.print( "------ " + map.get( 220180 )); System.out.print( " " + map.get( 220181 )); System.out.println( " " + map.get( 220182 )); System.out.println( "containsKey()方法的返回结果:" ); System.out.print( "------ " + map.containsKey( 220180 )); System.out.print( " " + map.containsKey( 220181 )); System.out.println( " " + map.containsKey( 220182 )); } } |
执行上面的代码,在控制台将输出如下信息:
get()方法的返回结果:
------ null 马先生 null
containsKey()方法的返回结果:
------ true true false
结论:Map集合中不应该利用get()方法来判断是否存在某个键,因为可能map的key值存在但value的值为null
今天被这个坑了,记录一下
以上这篇浅谈Map集合中get不存在的key值,会抛出异常吗?就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/a4171175/article/details/79310064