List of all keywords and reserved words in java
Java Keywords What is a keyword? Keyword is a special word/reserved word which is already defined in the compiler. We can not use keywords in our program for declaring any variable or program name or in other declarations. Keywords definition is defined in the compiler. For example, If you try to declare a variable with name 'try' that is not possible as 'try' is a keyword in java language. See following example. class Testpgm { int try; //this variable can not be declared.... public static void main (String[] args ) { //class code.... } } Below is lists of all Java keywords- There are 53 keywords in java. 1. 48 special words. 2. 3 special words. 3. 2 unused words. 2 unused keywords ================ 1. goto 2. const 3 reserve words =============== 1. null 2. true 3. false 48 special words ================ keywo...