Java Loops For - ashish9342/FreeCodeCamp GitHub Wiki
There are 2 of these:
- Normal
for
loop
for( initialize variable; condition; modify variable ){
//perform action
}
For e.g.
for(int i=0; i<10; i++){
System.out.println("The value of is : " + i);
}
- Enhanced
for
loop
Well, this came into existence in Java 5. It helps when you are required to iterate over a list of items and perform some action like so:
//assuming nameList is a List of names that are actually Strings
for( String name : nameList ){
SYstem.out.println(name);
}