为什么doHttpRequest的finish()方法里最后要执行doHttpRequest函数呢?
来源:8-3 请求成功移除处理

longKa
2017-05-01
while (iterator.hasNext()) {
MoocRequest next = iterator.next();
mRunning.add(next);
iterator.remove();
doHttpRequest(next);
}
写回答
1回答
-
nate
2017-05-16
这是为了执行下一个请求
00
相似问题