集合的ListIterator的用法

  在说ListIterator之前,对于Iterator迭代器都应该很熟悉,在jdk1.2后出现的,代替了Enumeration接口,用于集合的遍历操作。而ListIterator也是迭代器,它的父接口就是Iterator,主要用于List及其子类型。
  public interface ListIterator<E> extends Iterator<E>
查看源码:
public interface ListIterator<E> extends Iterator<E> {

    //正向遍历列表时,如果列表迭代器有多个元素,则返回 true
    boolean hasNext();

    //返回列表中的下一个元素
    E next();

    //返回对next的后续调用所返回元素的索引
    int nextIndex();

    //如果以逆向遍历列表,列表迭代器有多个元素,则返回 true
    boolean hasPrevious();

    //返回列表中的前一个元素
    E previous();

    //返回对previous的后续调用所返回元素的索引
    int previousIndex();

    //从列表中移除由next或previous返回的最后一个元素
    void remove();

    //用指定元素替换next或previous返回的最后一个元素
    void set(E e);

    //将指定的元素插入列表
    void add(E e);
}
用法示例
public class ListIteratorTest {
	@Test
	public void test1(){
		List<String> list = new ArrayList<String>();
		list.add("one");
		list.add("two");
		list.add("three");
		list.add("four");
		
		ListIterator<String> iter = list.listIterator();
		//正向遍历
		while(iter.hasNext()){
			//获取元素的索引
			int index = iter.nextIndex();
			String str = iter.next();
			System.out.println(index+":"+str);
		}
		System.out.println("---------------------------");
		//反向遍历
		while(iter.hasPrevious()){
			//获取元素的索引
			int index = iter.previousIndex();
			String str = iter.previous();
			System.out.println(index+":"+str);
		}
	}
	
	@Test
	public void test2(){
		List<String> list = new ArrayList<String>();
		list.add("one");
		list.add("two");
		list.add("three");
		list.add("four");
		
		ListIterator<String> iter = list.listIterator();
		
		iter.next();
		System.out.println(list);//[one, two, three, four]
		
		//指定元素替换next()返回的值
		iter.set("AA");
		System.out.println(list);//[AA, two, three, four]
		
		//删除元素"AA"
		iter.remove();
		System.out.println(list);//[two, three, four]
		
		//添加元素
		iter.add("BB");
		System.out.println(list);//[BB, two, three, four]
	}
}
总结:Iterator和ListIterator区别和联系?
相同点:都是迭代器,当需要对集合中的元素进行遍历而不需要干预遍历过程时,两种都可以使用
不同点:
1).使用范围不同,Iterator可以应用于所有集合,Set,List和Map和这些集合的子类型,而ListIterator只能用于List及其子类型
2).ListIterator和Iterator都有hasNext()和next()方法,可以实现顺序向后遍历,但是ListIterator有hasPrevious()和 previous()方法实现逆向(顺序向前遍历)
3).ListIterator可以定位当前索引的位置,nextIndex()和previousIndex()可以实现。Iterator没有此功能
4).ListIterator有add方法,可以向List中添加对象,而Iterator不能
5).都可以实现删除对象,但是ListIterator可以实现对象的修改,Iterator只能遍历不能修改
 

                
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值