What are uses of for each loop | Sololearn: Learn to code for FREE!
+ 4

What are uses of for each loop

24th Mar 2017, 5:18 PM
haritha
haritha - avatar
3 Antworten
+ 3
foreach loop work with collections without bothering about index of the element. It is best when elements in the collection have to be processed sequentially. for (datatype var : collection ) { //to } example int arr[] = {1,2,3,4,5,6,7,8,9} for(int i:arr){ System.out.println(i); }
24th Mar 2017, 5:27 PM
देवेंद्र महाजन (Devender)
देवेंद्र महाजन (Devender) - avatar
+ 1
while loop runs indefinitely. it's used for keeping simple things going. for instance a guessing game would use a while loop to restart after each guess. for loop has a set amount of loops. It might loop thru a list for example. perhaps you want to add all the numbers from a list together. you would create a variable and use a for loop to look at each item in the list and add it to the variable.
24th Mar 2017, 5:22 PM
LordHill
LordHill - avatar
+ 1
foreach loop in Java is known as an enhanced for loop
24th Mar 2017, 5:28 PM
LordHill
LordHill - avatar