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 :: ripple effect textview android 
Java :: java 2d array for each 
Java :: get hashmap into array 
Java :: android get text from string xml programmatically 
Java :: android vibrate 
Java :: recyclerview stop scrolling 
Java :: java calculate time difference 
Java :: setbounds in java 
Java :: byte to bufferedimage java 
Java :: java localtime format 
Java :: sorting char array in java 
Java :: how to find the largest number in a 2d array java 
Java :: android studio remove action bar 
Java :: java get sub array 
Java :: como calcular a raiz quadrada em java 
Java :: hashmap foreach 
Java :: jframe set visibility 
Java :: key listener java 
Java :: how to convert a collection to array in java 
Java :: Java tree from star 
Java :: generate 5 digit random string in java 
Java :: change number into array in java 
Java :: java selenium implicitly wait 
Java :: jframe in java 
Java :: java terminal colors 
Java :: define a list java 
Java :: java set from string array 
Java :: java list distinct by key 
Java :: slicing array in java 
Java :: split method in java 
ADD CONTENT
Topic
Content
Source link
Name
2+9 =