您好,登錄后才能下訂單哦!
在使用Java集合的時候,都需要使用Iterator。但是java集合中還有一個迭代器ListIterator,在使用List、ArrayList、LinkedList和Vector的時候可以使用。這兩種迭代器有什么區別呢?下面我們詳細分析。這里有一點需要明確的時候,迭代器指向的位置是元素之前的位置。
首先看一下Iterator和ListIterator迭代器的方法有哪些。
Iterator迭代器包含的方法有:
ListIterator迭代器包含的方法有:
相同點
不同點
使用范圍不同,Iterator可以應用于所有的集合,Set、List和Map和這些集合的子類型。而ListIterator只能用于List及其子類型。
ListIterator有add方法,可以向List中添加對象,而Iterator不能。
ListIterator和Iterator都有hasNext()和next()方法,可以實現順序向后遍歷,但是ListIterator有hasPrevious()和previous()方法,可以實現逆向(順序向前)遍歷。Iterator不可以。
ListIterator可以定位當前索引的位置,nextIndex()和previousIndex()可以實現。Iterator沒有此功能。
ArrayList<String> stringArrayList1 = new ArrayList<String>();
ArrayList<String> stringArrayList2 = new ArrayList<String>();
stringArrayList1.add("ok");
stringArrayList1.add("hello");
stringArrayList1.add("world");
stringArrayList2.add("好的");
stringArrayList2.add("你好");
stringArrayList2.add("世界");
stringArrayList1.addAll(stringArrayList2);
ListIterator<String> iterator = stringArrayList1.listIterator();
System.out.println("從前往后輸出:");
while (iterator.hasNext()){
System.out.println("next="+iterator.next());
}
System.out.println("\r\n從后往前輸出:");
while (iterator.hasPrevious()){
System.out.println("previous="+iterator.previous());
}
注意:一定要先進行由前向后輸出,之后才能進行由后向前的輸出。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。