Example Of A Enhanced For Loop

[Solved] Example Of A Enhanced For Loop | Solidity - Code Explorer | yomemimo.com
Question : Enhanced For Loop

Answered by : important-ibis-0p1mjy9n3ay6

As of Java 5, the enhanced for loop was introduced. This is mainly used to traverse collection of elements including arrays.
Syntax :
for(declaration : expression) { // Statements
}
Declaration − The newly declared block variable, is of a type compatible with the elements of the array you are accessing. The variable will be available within the for block and its value would be the same as the current array element.
Expression − This evaluates to the array you need to loop through. The expression can be an array variable or method call that returns an array.

Source : https://sites.google.com/revature.com/studyguide/java/looping-constructs | Last Update : Tue, 07 Sep 21

Question : enhanced for loops

Answered by : narlotl

String[] myArray = {"Enhanced for loops", "are cool", "and save time!"};
for (String myValue : myArray) { System.out.println(myValue);
}
/*Result:
Enhanced for loops
are cool
and save time!
*/

Source : https://www.cis.upenn.edu/~matuszek/General/JavaSyntax/enhanced-for-loops.html | Last Update : Thu, 05 Aug 21

Answers related to example of a enhanced for loop

Code Explorer Popular Question For Solidity