java學生選課程序Set程序異常
親們,誰能幫我解答下為什么會出現(xiàn)此類異常? Exception in thread "main" java.lang.NullPointerException at com.imooc.collection.SetTest.testAdd(SetTest.java:19) at com.imooc.collection.SetTest.main(SetTest.java:52) 19:Course cr1=new Course("1","數據結構"); ?coursesToSelect.add(cr1); 52:SetTest st=new SetTest(); st.testAdd();
2016-06-20
之前我遇到的也是這個空指針異常,原因就是構造函數里沒有對course實例化。
2016-06-06
可能Set沒十里花
2016-05-29
NullPointerException ?這是空指針異常,看看調用的對象是否為 null?