Home Java javaTutorial Detailed explanation and analysis of ListIterator and Iterator in Java

Detailed explanation and analysis of ListIterator and Iterator in Java

Dec 13, 2016 pm 05:20 PM
iterator

When using java collections, you need to use Iterator. But there is also an iterator ListIterator in the java collection, which can be used when using List, ArrayList, LinkedList and Vector. What is the difference between these two iterators? Let’s analyze it in detail below. One thing that needs to be made clear here is that the position pointed by the iterator is the position before the element, as shown in the following figure:

Detailed explanation and analysis of ListIterator and Iterator in Java

Here it is assumed that the collection List consists of four elements List1, List2, List3 and List4. When using the statement Iterator When it = List.Iterator(), the position pointed by the iterator it is the position pointed by Iterator1 in the above figure. After the statement it.next() is executed, the position pointed by the iterator moves to the position pointed by Iterator2 in the above figure.

First, let’s take a look at the methods of Iterator and ListIterator.

Iterator contains the following methods:

hasNext(): If there is an element after the position pointed by the iterator, return true, otherwise return false

next(): Return the element after the position pointed by the Iterator in the set

remove(): Delete the element in the collection after the position pointed by the Iterator. The methods included in the ListIterator are:

add(E e): Insert the specified element into the list, and the insertion position is before the current position of the iterator.

hasNext( ): When traversing the list in the forward direction, if there are elements after the list iterator, it returns true, otherwise it returns false

hasPrevious(): If it traverses the list in the reverse direction, and there are elements in front of the list iterator, it returns true, otherwise Returns false

next(): Returns the element in the list after the position pointed by ListIterator

nextIndex(): Returns the index of the element after the position required by ListIterator in the list

previous(): Returns the element in the list before the position pointed by ListIterator

previousIndex(): Returns the index of the element in front of the desired position of ListIterator in the list

remove(): Removes the last element returned by next() or previous() from the list (a bit confusing, it means using hasNext() on the iterator ) method, delete the element after the position pointed by ListIterator; when using the hasPrevious() method on the iterator, delete the element before the position pointed by ListIterator)

set(E e): Remove next() or previous() from the list The last element returned The last element returned is changed to the specified element e

one. The same thing

are iterators. When you need to traverse the elements in the collection without interfering with the traversal process, both iterators can be used.

2. Differences

1. Different usage scope, Iterator can be applied to all collections, Set, List and Map and subtypes of these collections. ListIterator can only be used for List and its subtypes.

2. ListIterator has an add method, which can add objects to the List, but Iterator cannot.

3. Both ListIterator and Iterator have hasNext() and next() methods, which can realize sequential backward traversal, but ListIterator has hasPrevious() and previous() methods, which can realize reverse (sequential forward) traversal. Iterator cannot.

4.ListIterator can locate the position of the current index, and nextIndex() and previousIndex() can achieve this. Iterator does not have this functionality.

5. Both can implement deletion operations, but ListIterator can implement object modification, and the set() method can achieve it. Iterator can only be traversed and cannot be modified.

Three: Iterator and ListIterator usage examples

ListIterator usage:

package com.collection;

import java.util.LinkedList;

import java.util.List;

import java.util.ListIterator;

public class ListIteratorTest {
 public static void main(String[] args) {  // TODO Auto-generated method stub  List<String> staff = new LinkedList<>();  staff.add("zhuwei");  staff.add("xuezhangbin");  staff.add("taozhiwei");  ListIterator<String> iter = staff.listIterator();  String first = iter.next();    //删除zhuwei  iter.remove();    //把zhuwei改为simei  //iter.set("simei");  System.out.println("first:"+first);    iter.add("xiaobai");    //遍历List元素  System.out.println("遍历List中元素,方法一:");  for(String str : staff)   System.out.println(str+"  ");    iter = staff.listIterator();  System.out.println("遍历List中元素,方法二:");  while(iter.hasNext())  {   System.out.println(iter.next());  } }
}
Copy after login

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Java Iterator vs. Iterable: Demystifying the World of Iterators and Iterable Objects Java Iterator vs. Iterable: Demystifying the World of Iterators and Iterable Objects Feb 19, 2024 pm 02:15 PM

In Java programming, the Iterator and Iterable interfaces are important tools for processing elements in collections. The Iterator interface provides methods for iterative access to collection elements, while the Iterable interface defines the iterability of the collection so that the elements in the collection can be accessed through Iterator. The close cooperation between the two provides us with a general method for traversing collection elements. Iterator interface The Iterator interface defines the following methods: booleanhasNext(): Check whether there are still elements in the collection. Enext(): Returns the next element in the collection. voidremove(): Remove the current element. Iterable

In-depth comparison of Java Iterator and Iterable: pros and cons analysis In-depth comparison of Java Iterator and Iterable: pros and cons analysis Feb 19, 2024 pm 04:20 PM

Conceptual differences: Iterator: Iterator is an interface that represents an iterator that obtains values ​​from a collection. It provides methods such as MoveNext(), Current() and Reset(), allowing you to traverse the elements in the collection and operate on the current element. Iterable: Iterable is also an interface, representing an iterable object. It provides the Iterator() method, which returns an Iterator object to facilitate traversing the elements in the collection. Usage: Iterator: To use Iterator, you need to first obtain an Iterator object, and then call the MoveNext() method to move to the next

Java Iterator vs. Iterable: A step into writing elegant code Java Iterator vs. Iterable: A step into writing elegant code Feb 19, 2024 pm 02:54 PM

Iterator interface The Iterator interface is an interface used to traverse collections. It provides several methods, including hasNext(), next() and remove(). The hasNext() method returns a Boolean value indicating whether there is a next element in the collection. The next() method returns the next element in the collection and removes it from the collection. The remove() method removes the current element from the collection. The following code example demonstrates how to use the Iterator interface to iterate over a collection: Listnames=Arrays.asList("John","Mary","Bob");Iterator

Java Iterator and Iterable: The key to collection traversal, demystified Java Iterator and Iterable: The key to collection traversal, demystified Feb 20, 2024 am 10:27 AM

Introduction to IteratorIterator is an interface in Java for traversing collections. It provides a set of methods that allow you to access elements in a collection in a sequential manner. You can use Iterator to iterate over collection types such as List, Set, and Map. Demo code: Listlist=newArrayList();list.add("one");list.add("two");list.add("three");Iteratoriterator=list.iterator();while(iter

Java Iterator and Iterable: Behind the Scenes of Collection Traversal Java Iterator and Iterable: Behind the Scenes of Collection Traversal Feb 19, 2024 pm 04:15 PM

Iterator (Iterator) and Iterable object (Iterable) are two very important interfaces in the Java collection framework. They enable you to iterate over the elements in a collection without knowing the specific implementation of the collection. The Iterator interface defines methods for traversing collections, including hasNext() and next(). The hasNext() method checks if there are more elements in the collection, while the next() method returns the next element in the collection. The Iterable interface defines a method for creating an Iterator, the iterator() method. This method returns an Iterator object that can be used to iterate over the collection. The following is using Itera

Java Iterator vs. Iterable: Unlocking the Power of Java Collections Java Iterator vs. Iterable: Unlocking the Power of Java Collections Feb 19, 2024 pm 07:00 PM

In Java, a collection is a collection of elements that provides a unified interface and methods to store, retrieve and operate these elements. Iterator and Iterable are two important Java interfaces that provide a common mechanism for traversing collection elements. The Iterator interface defines hasNext() and next() methods for traversing collections. The hasNext() method is used to check whether there are any untraversed elements in the collection, and the next() method is used to return the current element and move it to the next element. The Iterable interface defines the iterator() method, which returns an Iterator object for traversing the elements in the collection.

Java Iterator and Iterable: An in-depth analysis of Java collection traversal mechanism Java Iterator and Iterable: An in-depth analysis of Java collection traversal mechanism Feb 19, 2024 pm 08:36 PM

Iterator interface The Iterator interface is a low-level interface in the Java collection framework for traversing collections. It defines two main methods: hasNext(): checks if there are more elements in the collection. next(): Returns the next element in the collection. The Iterator interface also defines some optional methods, such as the remove() method, which is used to remove the current element from the collection. Using the Iterator interface You can use the Iterator interface to traverse a collection using the following steps: Get the Iterator object of the collection. Use the hasNext() method to check if there are more elements in the collection. If there are more elements, use the next() method to get the next element

How to use Iterator function in Java for collection traversal How to use Iterator function in Java for collection traversal Jun 26, 2023 pm 03:47 PM

In Java, a collection is a common data structure that allows us to store and process large amounts of data. In many cases, we need to traverse a collection in order to operate on its elements. To achieve this purpose, Java provides the Iterator function, which allows us to easily traverse the elements in the collection. In this article, we will explain how to use the Iterator function in Java for collection traversal. 1. The definition of Iterator function in Java, Iterator is

See all articles