Question: As stated in class, the enhanced for loop in Java serves as syntactic sugar. Rewrite the following for loop as a while statement using an
As stated in class, the enhanced for loop in Java serves as syntactic sugar. Rewrite the following for loop as a while statement using an Iterator object with its methods (i.e. hasNext(), next()). The variable outList points to a Java List of String objects.
for( String working : outList )
System.out.println( working );
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
