實例化自訂物件陣列時出現NullPointerException
嘗試建立物件陣列時,如果不這樣做,可能會遇到NullPointerException正確初始化數組的各個元素。
考慮以下內容code:
public class ResultList { public String name; public Object value; } public class Test { public static void main(String[] args) { ResultList[] boll = new ResultList[5]; boll[0].name = "iiii"; // NullPointerException here } }
在此範例中,您建立了 ResultList 物件的數組,但尚未建立任何實際物件來指派給陣列元素。結果,boll 數組的所有元素最初都是 null,嘗試存取 boll[0].name 將拋出 NullPointerException。
要修復此異常,必須在存取其屬性之前初始化陣列元素。這可以透過使用new 關鍵字建立ResultList 類別的新實例並將其指派給陣列元素來完成,如下所示:
boll[0] = new ResultList();
新增此行後,您將能夠存取名稱和boll[0 ] 的value 屬性,而不會遇到NullPointerException。
以上是為什麼創建自訂物件數組時會出現 NullPointerException?的詳細內容。更多資訊請關注PHP中文網其他相關文章!