how to get i foreach java code example
Example 1: foreach java
for (String name : names) {
System.out.println(name);
}
Example 2: java for loop with index
int index = 0;
for(Element song : question) {
System.out.println("Current index is: " + (index++));
}