各位快过来看看啦,有问题啦有问题啦!!
问题:请问使用迭代器遍历了list之后,还能有什么办法- import java.util.Iterator;
- import java.util.LinkedList;
- public class LinkedListDemo {
- public static void main(String[] args) {
- LinkedList li = new LinkedList();
- li.add(new Person("wangwu0", 25));
- li.add(new Person("wangwu32", 65));
- li.add(new Person("wangwu4", 34));
- li.add(new Person("wangwu3", 25));
- li.add(new Person("wangwu3", 25));
- Iterator it = li.iterator();
- while (it.hasNext())
- System.out.println(it.next());
- System.out.println();
- System.out.println(li.remove(2));
- System.out.println();
- while (it.hasNext()) //这里没有效果的。想问问有没有用构造器再实现一次的方案
- System.out.println(it.next());
- }
- }
复制代码
再使用这个迭代器在遍历一遍list吗?小弟写了个代码想先输出一遍,去掉某些元素后在遍历一遍。- for (int i = 0; i < li.size(); i++) {
- System.out.println(li.get(i));
- }
- System.out.println(li.getFirst());
复制代码 后来我把代码改成上面的,想利用索引解决问题,但是出现了意想不到的结果:
Person [name=wangwu0, age=25]
Person [name=wangwu32, age=65]
Person [name=wangwu3, age=25]
Person [name=wangwu3, age=25]
Person [name=wangwu0, age=25]
以上只是for循环输出的部分
|
|