Home Help Java W The While keyword
Questions:Ask|Latest



The While keyword
Posted on: November 18, 2009 By Deepak Kumar
While is a keyword defined in the java programming language.

The While keyword

     

While is a keyword defined in the java programming language. Keywords are basically reserved words which have specific meaning relevant to a compiler in java programming language likewise the while keyword indicates the following :

  • The while keyword in java programming language specifies a loop 
  • The loop represented by the while keyword repeats as long as a condition is true.

Syntex:  Here is the syntax that must be followed by the developer while using the keyword while.

public class Myclass {

while (expression_evaluates_to_true) {

<statements>

}

}


Recommend the tutorial

Ask Questions?    Discuss: The While keyword  

Post your Comment


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