java for each syntax code example
Example 1: for each java
int [] intArray = { 10, 20, 30, 40, 50 };
for( int value : intArray ) {
System.out.println( value );
}
Example 2: java for each
//itemset contains variables of type <Data Type>
for(<Data Type> item : itemset) {
//loop
}