HashMap上的NegativeArraySizeException

时间:2012-12-31 18:22:41

标签: java hashmap

出于某种原因,我的程序在运行一段时间后突然抛出NegativeArraySizeException。抛出它的代码是在命令之后,我在抛出异常之前输入了该命令。

我正在使用的代码主要用于调试目的,如下所示:

final HashMap<String, Integer> busy = new HashMap<>();
//this map gets filled and emptied in threads

System.out.println("Busy tables: " + Arrays.toString(this.busy.keySet().toArray()));
System.out.println("Time busy: " + Arrays.toString(this.busy.values().toArray()));
//map gets read (from the input handler thread)

第一个System.out.println()行会抛出异常,但我可以想象,如果它继续运行,它也会被抛到另一个上。

这可能是某种线程问题还是原因可能在其他地方?

谷歌给了我(这是多年来的第一次)没有可用的结果。套装怎么能有负面大小?

编辑:例外:

Exception in thread "Thread-1" java.lang.NegativeArraySizeException
    at java.util.AbstractCollection.toArray(Unknown Source)
    at nl.lolmewn.statsglobal.Main.handleInput(Main.java:61)
    at nl.lolmewn.statsglobal.Main.access$000(Main.java:20)
    at nl.lolmewn.statsglobal.Main$1.run(Main.java:200)
    at java.lang.Thread.run(Unknown Source)

1 个答案:

答案 0 :(得分:7)

如果没有关于代码的更多信息,我会认为对HashMap对象的无保护多线程访问是主要的嫌疑人。 HashMapHashtable相反,已同步,需要显式锁才能在多线程环境中直接或通过keySet()返回的集合工作或entrySet()

由于HashMap处于不一致的内部状态,未能做到这一点会产生很多有趣的副作用。我建议使用调试器来破解该异常,并更好地了解正在发生的事情。