Keywords in java programming
Keyword is a predefined word given by the compiler which has some specific task. Keywords also known as reserved word.All the java technology keywords are lower case. Java programming has a richer set of keywords than C language or C++ language.
Some java keywords are
import —>In java programming implementing classes and methods import the packages that purpose using the keyword import.class —> In order to create a class we have use the keyword class to see an example written using the class keyword )
this —> This keyword is used to represent the method belongs to particular current object
Super —> It can used in inheritance concept
extends —> Also used in inheritance concepts. Accessing methods one class to another class that can done by extends keyword
package —> In java there will be package which consists of number of classes and interfaces in order to access that package, using the key word package
return —> Return key word is similar to C language
Final —> which is similar to constant
public,private,protected —> These keywords are access specifierclass
boolean,int,double,float,char,short,byte,long —> These keywords are data type
do,for,while,if,else,switch,default,break,continue —> These keywords are control structures
try, catch, finally, throws —> These are exception handling keywords
In a class global variables are declared using the keyword static
The word integer is not a java keyword
Nice👏🏻
ReplyDelete