Skip to main content

Keywords

Keywords

Keywords are the words that are already defined in language. They are also known as Reserved Words. They are created for specific use ,their working cannot be changed.In java programming language there are 50 reserved words that have different meaning in java.
Initially there are 49 keywords in java till java 1.4 and then "enum" is added with java 1.5 i.e. java 5
keywords are defined in lower case only.
keywords cannot be used as a variable, method, class.


  • List of these 50 java keywords are - 
abstract       continue     for                        new                       switch
assert          default        goto                      package                synchronized
boolean       do                if                          private                  this
break          double         implements         protected              throw
byte             else              import                 public                   throws
case             enum           instanceof           return                   transient
catch           extend         int                        short                     try
char            final             interface             static                     void
class            finally         long                      strictfp                 volatile
const           float            native                   super                    white
  • goto and const are not available for implementation.
  • strictfp is added with java 1.2
  • assert is added with java 1.4
  • enum is added with java 1.5
There are also three Literals that are not keywords but reserved that are predefined in java : true, false, null.

These keywords are defined with different categories i.e. :

Datatypes - boolean, byte, char, double, float, int, short, long.
Modifiers - abstract, const, final, native, static, strictfp, synchronized, transient, volatile,.
Packages - import, package.
Exception Handling - assert, catch, finally, throw, throws, try.
Class & Objects - class, enum, extends, implements, instanceof, interface, new, super, this.
Access Modifiers - private, protected, public.
Control Statement - break, case, continue, default, do, else, for, goto, if, return, switch, while.
Other - void.

Comments

Post a Comment

Popular posts from this blog

Data Types

 Data Types     There are different types of data used by programmers in java like Numbers, Alphabets, Images etc. Computer does not know the difference between values like number or alphabets.Each type of data will be categorized into different types which are known as Datatypes in java. Thus, Datatype is a classification of data according to its type that an object or a variable can hold. It is a kind of data storage that contains specific type or range of value. Whenever variable is created a storage is assigned to it according to the datatype. Two main concepts of Datatypes are - Type of data. Size allocated to it. It is classified into two main categories i.e Primitives and Referenced .  There are 8 Primitive Type Datatypes and 4 Referenced Datatypes i.e Primitives Datatypes - These are built-in or predefined by the language and their definition cannot be changed. byte short char int long float double boolean Referenced Dat...

Polymorphism

Polymorphism Polymorphism means " Many Forms " - One Object with many behaviors. In other words, ability to appear more than one i.e. to do different things with single object. It can be implemented by method overloading and method overriding in java. For eg. : When you press a device it will turn on, when you press it again it will turn off. Similarly in java "+" Plus Operator has polymorphic behavior: It can perform Arithmetic Operation as well as Concatenation Operation Types of Polymorphism Static Polymorphism Dynamic Polymorphism Static Polymorphism also represented as Compile Time  Polymorphism and Early Binding  Polymorphism. Static Polymorphism is just a method overloading. Thus, it is a process of defining more than one functionalities with same name in same class but having different parameter lists (i.e. different no. of parameters list or different parameters type) Here compiler will figure out which method to call by...

Literals

Literals Literal is the value that we pass in the variables. In other words, Literals are syntactic representation of boolean,numeric,character and string type. These values can be fixed or constant and are stored in the variable. Generally literal are categorized into two types i.e. Numeric Literals and Non Numeric Literals. Integer Literal : They includes - int, short, long, byte. These are the value without any decimal. Int is default type of integer. if any value is out of range in integer literal then compiler will consider that value as int and generates an error. To represent any value in long L/l will be used at the end. There are 4 integer Literals type i.e. Decimal, Octal, Hexadecimal, Binary(added in java 7)  Decimal Literals has base 10 i.e from 0 to 9.          They must not be started with 0. Example :          int a = 111;          it will print 111 Octal...