java ArrayList 迭代器的问题

先粘代码:publicstaticvoidmain(String[]args){ArrayList<Integer>list=newArrayList<Integer>(... 先粘代码:
public static void main(String[] args) { ArrayList<Integer> list = new ArrayList<Integer>(); Iterator<Integer> it = list.iterator();
list.add(0); list.add(1); list.add(2);
while (it.hasNext()) { Integer a = (Integer) it.next(); System.out.println(a); } }
运行时报错:

我想遍历表,而且只能用迭代器,可是不知道哪里出问题了,要怎么改?
展开
 我来答
1435397496
2014-11-26 · TA获得超过697个赞
知道小有建树答主
回答量:317
采纳率:96%
帮助的人:182万
展开全部

你像这样就好了,因为你获取迭代器Iterator时List对象list中还没有值

追问
那如果我想要动态添加List中的元素要怎么办呢?
就好比把向list添加元素写成一个方法List.add(Integer a),由其他对象来调用它。
这样的话迭代器是不是也会失效啊?
追答

好像是的,我试过了,你即使想像你那样去实现,Iterator<Integer> it = list.iterator();这一句也必须写在你的添加语句后面,

推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式