Home Help Java T true Java Keyword



true Java Keyword
Posted on: November 18, 2009 at 12:00 AM
The true is a keyword defined in the java programming language.

true Java Keyword

     

The true 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 true keyword indicates the following :

-- The true keyword in java programming language indicates one of the two defined values for a boolean variable (which may be 0 or 1).

Example to use the true keyword in a class:

e>

Related Tags for true Java Keyword:


More Tutorials from this section

Ask Questions?    Discuss: true Java 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.

 

 

 

public class Class{

boolean is = true;

}