How to use for each in Java code example

Example 1: java for each

//itemset contains variables of type <Data Type>
for(<Data Type> item : itemset) {
  //loop
}

Example 2: foreach java

for (String name : names) {
    System.out.println(name);
}

Example 3: java foreach

List<String> someList = new ArrayList<String>();
// add "monkey", "donkey", "skeleton key" to someList
for (String item : someList) {
    System.out.println(item);
}

Example 4: for-each loop in java

// syntax
for(<DataType of array><variablename> : <Array to be iterated>)
{
   // code
}

Tags:

Java Example