for each with array java code example
Example 1: java for each
//itemset contains variables of type <Data Type>
for(<Data Type> item : itemset) {
//loop
}
Example 2: for each loop java string array
//iteration by using the enhanced for loop provided by Java 5 or later
for (String str : strArray3) {
System.out.print(str);
}