Object Oriented Software Engineering   View all facts   Glossary   Help
subject > programming language construct > statement > loop > while loop
Next loopfor loop    Uploop

while loop
subjectfact 
while loopcan be interchanged with a for looplink: chapter2section2.8.html#751, 2001-08-30 14:58:23.0
has form
while(condition)
{
// statements to keep executing while condition is true
}
link: chapter2section2.8.html#745, 2001-08-30 14:58:23.0
is a subtopic of The Basics of Java2001-08-30 14:58:23.0
is a kind of loop2001-08-30 14:58:23.0
loophas identical syntax in Java, C and C++2001-08-30 14:56:31.0
has part condition2001-08-30 14:56:31.0
statementshould be not more than one line long if possible2001-08-30 14:57:47.0