您好,登錄后才能下訂單哦!
如何處理HashMap中get()方法出現的NullPointerException問題,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
今天寫代碼發現一個 bug,HashMap的 get() 方法一直報空指針異常,現記錄一下。
private HashMap<Integer, Integer> cache; private LinkedList<Integer> keyList; private int capacity; public LRUCache(int capacity) { cache = new HashMap<>(); keyList = new LinkedList<>(); this.capacity = capacity; } // Put it in the front if use public int get(int key) { keyList.remove(new Integer(key)); keyList.addFirst(key); return cache.get(key); }
最后一行的 cache.get(key) 一直報 NullPointerException。
首先,LRUCache 對象我是 new 出來的,在構造函數會對 cache 進行初始化,不會是 null,debug 中也驗證了,cache 不是 null。
接著去查看 Java API,如下:
V get(Object key)
Returns the value to which the specified key is mapped, or null if this map contains no mapping for the key.
Java API 明確說明當給定的 key 不存在時,會返回 null,不會拋出 NullPointerException 。
說明不是這里的問題,那既然會返回 null,好像懂了,如果 key 值不存在,當返回 null 時,如果用基本數據類型接收結果,如下面的代碼。
public static void main(String[] args) { HashMap<Integer, Integer> map = new HashMap<>(); int i = map.get(5); }
這就會將 null 賦給 i ,這里會有一個自動拆箱過程,會調用返回值的 intValue() 方法并將結果賦值給 i,但是這個返回值是 null,那么 null.intValue() 便會出現 NullPointerException。
最開始的 return cache.get(key); 也是一樣,返回值是 null,但是函數類型是 int,在轉換時也出現了 NullPointerException。
所以雖然 HashMap 的 get() 方法不會出現 NullPointerException,但是在包裝類和基本類型轉換時還是可能會出現 NullPointerException ,編程時需要注意。
很久以前剛開始寫代碼的時候經常會從一些模板或者map、list或者一些對象里面取值
取到的值很可能是Object或某種類型 如果需要存儲轉化成String類型
Map<String,Object> map = Maps.newHashMap(); String userName = map.get("username").toString();
我們可以嘗試String mius = "";
String userName = map.get("username")+mius;
關于如何處理HashMap中get()方法出現的NullPointerException問題問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。