Home Help Java D The do Keyword



The do Keyword
Posted on: October 4, 2006 at 12:00 AM
Keywords are special symbols in the Java programming language, which are reserved for a Java program.

The do Keyword   

     

Keywords are special symbols in the Java programming language, which are reserved for a Java program.

The do is a Java keyword, that may not be used as identifiers i.e. you cannot declare a variable or class with this name in your Java program. This keyword is used in control statement to declare a loop. It provides a repetitive task as long as the condition specified with the while keyword is true; then it exits from the loop when the specified condition is founded as false.

The syntax of do loop is written as: 

do{

   statement;

 }
while (condition);

 

  The do loop iterates a block of statements. For example:

do {

  i++;

} while ( i < maxNum );

 

 The do loop block is always executed once whether the condition specified with the while keyword is true or false. 

Related Tags for The do Keyword:


More Tutorials from this section

Ask Questions?    Discuss: The do Keyword  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.