VOOZH about

URL: https://www.geeksforgeeks.org/java/vector-foreach-method-in-java/

⇱ Vector forEach() method in Java - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Vector forEach() method in Java

Last Updated : 11 Jul, 2025
The forEach() method of Vector is used to perform a given action for every element of the Iterable of Vector until all elements have been Processed by the method or an exception occurs. The operations are performed in the order of iteration if the order is specified by the method. Exceptions thrown by the Operation are passed to the caller. Until and unless an overriding class has specified a concurrent modification policy, the operation cannot modify the underlying source of elements so we can say that behavior of this method is unspecified. Retrieving Elements from Collection in Java. Syntax:
public void forEach(Consumer<? super E> action)
Parameter: This method takes a parameter action which represents the action to be performed for each element. Return Value: This method does not returns anything. Exception: This method throws NullPointerException if the specified action is null. Below programs illustrate forEach() method of Vector: Example 1: Program to demonstrate forEach() method on Vector which contains a collection of String.
Output:
List of Strings data
Saltlake
LakeTown
Kestopur
Example 2: Program to demonstrate forEach() method on Vector which contains collection of Objects.
Output:
list of Objects:
****************
Object Details
key : Shape
value : Square
****************
Object Details
key : Area
value : 2433Sqft
****************
Object Details
key : Radius
value : 25m
Reference: https://docs.oracle.com/javase/10/docs/api/java/util/Vector.html#forEach(java.util.function.Consumer)
Comment