for (final ArrayList<SmartPhone> smartPhones : smartPhonesCluster) {
new Thread(new Runnable() {
@Override
public void run() {
for (SmartPhone smartPhone : smartPhones) {
Queue<SmartPhoneTask> tasks = smartPhone.getSystem()
.getTaskQue();
SmartPhoneTask task = null;
assert tasks != null;
try {
while (!tasks.isEmpty()) {
task = tasks.poll(); // This is the line throwing the exception (GlobalNetwork.java:118)
assert task != null;
task.execute();
task.onTaskComplete();
}
} catch (RuntimeException e) {
e.printStackTrace();
}
}
}
}).start();
}
并记录:
java.util.NoSuchElementException
at java.util.LinkedList.remove(LinkedList.java:788)
at java.util.LinkedList.removeFirst(LinkedList.java:134)
at java.util.LinkedList.poll(LinkedList.java:470)
at com.wtsang02.reu.botnet.network.GlobalNetwork$1.run(GlobalNetwork.java:118)
at java.lang.Thread.run(Thread.java:662)
java.lang.NullPointerException
Exception in thread "Thread-299" java.lang.AssertionError
at com.wtsang02.reu.botnet.network.GlobalNetwork$1.run(GlobalNetwork.java:119)
at java.lang.Thread.run(Thread.java:662)
第118行指向:
task=tasks.poll();
如何解决这个问题?如果这会产生影响,队列就是LinkedList实现。
答案 0 :(得分:8)
LinkedList
不是线程安全的,因此如果您在多个线程上访问Linkedlist
,则需要外部同步。此同步在某个对象上(synchronized
方法只是“this
上的同步”的简写,并且必须在相同的对象上同步gets和puts 。你肯定是在这里做的,因为你为每个SmartPhone
创建一个新主题,然后从那里访问该手机的LinkedList
。
如果一个线程在someObject1
上同步时放入列表,然后另一个线程在someObject2
上同步时读取该列表,那么不计为外部同步 - 代码仍然破碎。
即使您使用了线程安全的集合,如果多个线程同时清空队列,也可能会遇到此异常。例如,想象一下:
thread A: put e into queue1
thread B: queue1.isEmpty()? No, so go on
thread C: queue1.isEmpty()? No, so go on
thread B: queue1.poll() // works
thread C: queue1.poll() // NoSuchElementException
您应该使用BlockingQueue
,如果列表中没有其他元素,则poll()
方法将返回null
。继续拉,直到你得到null
,然后打破循环。