Search
 
SCRIPT & CODE EXAMPLE
 

JAVA

How to iterate over a list in Java?

// Use for/while loop to iterate a List and get element by index.
for(int i= 0; i < list.size(); i++) {
   System.out.println(list.get(i));
}
//Use foreach loop to iterate list of elements. 
for(int i= 0; i < list.size(); i++) {
   System.out.println(list.get(i));
}
//Use iterator from the list to iterate through its elements.
Iterator<Integer> iterator = list.iterator();
while(iterator.hasNext()) {
   System.out.print(iterator.next() + " ");
}
// Use listIterator from the list to iterate through its elements.
Iterator<Integer> iterator = list.listIterator();
while(iterator.hasNext()) {
   System.out.print(iterator.next() + " ");
}
// Use forEach of the list to iterate through its elements.
list.forEach(i -> {System.out.print(i + " ");});
//Use forEach of the stream of list to iterate through its elements.
list.stream().forEach(i -> {System.out.print(i + " ");});
Comment

listin looping in java

Iterator itr=list.iterator();
while(itr.hasNext()){
 system.out.println(itr.next); 
}
Comment

loop list java

package crunchify.com.tutorials;
 
import java.util.*;
 
/**
 * @author Crunchify.com
 * How to iterate through Java List? Seven (7) ways to Iterate Through Loop in Java.
 * 1. Simple For loop
 * 2. Enhanced For loop
 * 3. Iterator
 * 4. ListIterator
 * 5. While loop
 * 6. Iterable.forEach() util
 * 7. Stream.forEach() util
 */
 
public class CrunchifyIterateThroughList {
 
    public static void main(String[] argv) {
 
        // create list
        List<String> crunchifyList = new ArrayList<String>();
 
        // add 4 different values to list
        crunchifyList.add("Facebook");
        crunchifyList.add("Paypal");
        crunchifyList.add("Google");
        crunchifyList.add("Yahoo");
 
        // Other way to define list is - we will not use this list :)
        List<String> crunchifyListNew = Arrays.asList("Facebook", "Paypal", "Google", "Yahoo");
 
        // Simple For loop
        System.out.println("==============> 1. Simple For loop Example.");
        for (int i = 0; i < crunchifyList.size(); i++) {
            System.out.println(crunchifyList.get(i));
        }
 
        // New Enhanced For loop
        System.out.println("
==============> 2. New Enhanced For loop Example..");
        for (String temp : crunchifyList) {
            System.out.println(temp);
        }
 
        // Iterator - Returns an iterator over the elements in this list in proper sequence.
        System.out.println("
==============> 3. Iterator Example...");
        Iterator<String> crunchifyIterator = crunchifyList.iterator();
        while (crunchifyIterator.hasNext()) {
            System.out.println(crunchifyIterator.next());
        }
 
        // ListIterator - traverse a list of elements in either forward or backward order
        // An iterator for lists that allows the programmer to traverse the list in either direction, modify the list during iteration,
        // and obtain the iterator's current position in the list.
        System.out.println("
==============> 4. ListIterator Example...");
        ListIterator<String> crunchifyListIterator = crunchifyList.listIterator();
        while (crunchifyListIterator.hasNext()) {
            System.out.println(crunchifyListIterator.next());
        }
 
        // while loop
        System.out.println("
==============> 5. While Loop Example....");
        int i = 0;
        while (i < crunchifyList.size()) {
            System.out.println(crunchifyList.get(i));
            i++;
        }
 
        // Iterable.forEach() util: Returns a sequential Stream with this collection as its source
        System.out.println("
==============> 6. Iterable.forEach() Example....");
        crunchifyList.forEach((temp) -> {
            System.out.println(temp);
        });
 
        // collection Stream.forEach() util: Returns a sequential Stream with this collection as its source
        System.out.println("
==============> 7. Stream.forEach() Example....");
        crunchifyList.stream().forEach((crunchifyTemp) -> System.out.println(crunchifyTemp));
    }
}
Comment

java iterate over list

for (int i = 0; i < crunchifyList.size(); i++) {
            System.out.println(crunchifyList.get(i));
        }
Comment

java loop through list

for (E element : list) {
    . . .
}
Comment

iterate list in java

Iterator itr=list.iterator();
while(itr.hasNext)
{
 system.out.println(itr.next); 
}
Comment

PREVIOUS NEXT
Code Example
Java :: how to instance a calendar in java 
Java :: maven paper 
Java :: strictfp java 
Java :: insert element into arraylist java 
Java :: for loop javasctip 
Java :: numbers of digits java 
Java :: how to close a jframe in netbeans 
Java :: java get number out of string 
Java :: charat(0).touppercase() java 
Java :: fill two dimensional array row by row java 
Java :: android application class manifest 
Java :: spring boot jackson infinite recursion 
Java :: java regex 
Java :: how to return array in java 
Java :: java hash password 
Java :: max and min value in array 
Java :: java println 
Java :: can interface have attributes java 
Java :: bean factory vs application context 
Java :: java sort int array 
Java :: java.lang.object[4] 
Java :: java checking the amount of duplicates in array 
Java :: java create new object 
Java :: what is packages in java 
Java :: calculate time java 
Java :: java indexof all occurrences 
Java :: declare array with size java 
Java :: character types java 
Java :: convert void * to int 
Java :: converting char array to string 
ADD CONTENT
Topic
Content
Source link
Name
3+3 =