当前位置:百科知识 > 知到废品回收答案

问题描述:

[单选] list是一个ArrayList的对象,哪个选项的代码填写到//todo delete处,可以在Iterator遍历的过程中正确并安全的删除一个list中保存的对象?()Iterator it = list.iterator(); int index = 0; while (it.hasNext()){Object obj = it.next(); if (needDelete(obj(){ //needDelete返回boolean,决定是否要删除 //todo delete } index ++; }
A.A)list.remove(obj); B.B)list.remove(index); C.C)list.remove(it.next()); D.D)it.remove();
参考答案:查看
答案解析:
☆收藏

随机题目