Object Oriented Software Engineering View all facts Glossary Help |
| subject > programming language construct > statement > loop > for loop |
| for loop comparison table | ||||||
| Subject | have disadvantage | has part | is a kind of | interchange with | have advantage | have form |
|---|---|---|---|---|---|---|
| loop | condition | statement | ||||
| for loop | it can be slightly harder to read the code of a for loop than a while loop | initializer | loop | a while loop | all the information about controlling the loop is kept in one place | for(initializer; condition; incrementer) |
Next loop: while loop Up: loop