Map的put方法抛出NullPointerException

时间:2018-04-02 12:51:07

标签: java dictionary

我有这段代码:

booleans.put(varToSet, choiceResponse);

并抛出NullPointerException。它显示的错误是:

Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    at com.salsagames.prometheus.code.Compiler$2.either(Compiler.java:120)
    at com.salsagames.prometheus.code.message.YesNo.lambda$new$2(YesNo.java:73)
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:252)

我使用的两个变量是:

varToSet测试

choiceResponse true

我正在使用Map的正确类型(String in,B​​oolean out)。

我的地图需要声明为new HashMap<>()

0 个答案:

没有答案