VOOZH about

URL: https://www.geeksforgeeks.org/java/concurrentlinkeddeque-iterator-method-in-java-with-example/

⇱ ConcurrentLinkedDeque iterator() method in Java with Example - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

ConcurrentLinkedDeque iterator() method in Java with Example

Last Updated : 24 Dec, 2018
The Java.util.concurrent.ConcurrentLinkedDeque.iterator() method is used to return an iterator of the same elements as that of the ConcurrentLinkedDeque. The elements are returned in random order from what was present in the deque. Syntax:
Iterator iterate_value = ConcurrentLinkedDeque.iterator();
Parameters: The function does not take any parameter. Return Value: The method iterates over the elements of the deque and returns the values(iterators). Below program illustrates the use of Java.util.concurrent.ConcurrentLinkedDeque.iterator() method: Example 1:
Output:
ConcurrentLinkedDeque: [Welcome, To, Geeks, 4, Geeks]
The iterator values are: 
Welcome
To
Geeks
4
Geeks
Example 2: ConcurrentLinkedDeque with integer elements.
Output:
ConcurrentLinkedDeque: [10, 20, 30, 40, 50]
The iterator values are: 
10
20
30
40
50
Comment