出于某种原因,我的程序在运行一段时间后突然抛出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)