For Each Loop in Java | Enhanced For Loop
The for each loop in Java (also referred to as enhanced for loop) is an extended feature of Java language that was introduced with the J2SE 5.0 release. This feature is specially designed to retrieve elements of the array efficiently rather than using array indexes. Java for-each loop can also … Read more