Skip to content

Latest commit

 

History

History

java_keywords

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

All 50 Java Keywords with Examples

Table below lists 48 Keywords in Java; excluding the keywords goto and const because they are not used.

abstract default if private this
assert do implements protected throw
boolean double import public throws
break else instanceof return transient
byte enum int short try
case extends interface static void
catch final long strictfp volatile
char finally native super while
class float new switch -
continue for package synchronized -

1) abstract

abstract keyword is used to implement the abstraction in java. A method which doesn’t have method definition must be declared as abstract and the class containing it must be declared as abstract. You can’t instantiate abstract classes. Abstract methods must be implemented in the sub classes. You can’t use abstract keyword with variables and constructors.

abstract class AbstractClass
{
    abstract void abstractMethod();
}

2) assert

assert keyword is used in the assertion statements. These statements will enable you to test your assumptions about a program. Assertion statements provide the best way to detect and correct the programming errors. Assertion statements take one boolean expression as input and assumes that this will be always true. If the boolean expression returns false, AssertionError will be thrown.

System.out.println("Enter your marks");
         
Scanner sc = new Scanner(System.in);
         
int marks = sc.nextInt();
         
assert marks > 35 : "FAIL";

3) boolean

boolean keyword is used to define boolean type variables. boolean type variables can hold only two values – either true or false.

boolean isActive = true;

4) break

The break keyword is used to stop the execution of a loop(for, while, switch-case) based on some condition.

for (int i = 0; i < 100; i++)
{
    System.out.println(i);
             
    if(i == 50) break;
}

5) byte

byte keyword is used to declare byte type of variables. A byte variable can hold a numeric value in the range from -128 to 127.

byte b = 50;

6) switch 7) case

Both switch and case keywords are used in the switch-case statement.

Scanner sc = new Scanner(System.in);

System.out.println("Enter Day :");

int day = sc.nextInt();

switch (day) 
{
    case 1:
        System.out.println("SUNDAY");
        break;

    case 2:
        System.out.println("MONDAY");
        break;

    //...

    case 7:
        System.out.println("SATURDAY");
        break;

    default:
        System.out.println("Invalid");
        break;
}

8) try 9) catch 10) finally

try, catch and finally keywords are used to handle the exceptions in java. The statements which are to be monitored for exceptions are kept in the try block. The exceptions thrown by the try block are caught in the catch block. finally block is always executed.

try 
{
    int i = Integer.parseInt("abc");
} 
catch (NumberFormatException ex) 
{
    System.out.println(ex);
} 
finally 
{
    System.out.println("This will be always executed");
}

11) char

char keyword is used to declare primitive char type variables. char represents the characters in java.

char a = 'A';
         
char b = 'B';
         
char c = 'C';

12) class

class keyword is used to define the classes in java.

class MyClass
{
    class MyInnerClass
    {
        //Inner Class
    }
}

13) continue

continue keyword is used to stop the execution of current iteration and start the execution of next iteration in a loop.

for (int i = 0; i <= 100; i++)
{
    if(i % 5 != 0)  continue;
             
    System.out.println(i);
}

14) default

default keyword is used to define the default methods in an interface (From Java 8). default keyword is also used in the switch-case statements.

interface MyInterface 
{
    public default void myDefaultMethod() 
    {
        System.out.println("Default Method");
    }
}

15) do

do keyword is used in a do–while loop. do-while loop is used to execute one or more statements repetitively until a condition returns false.

int a = 10;

int b = 20;

do {
    a = a + b;

    b = b + 10;

    System.out.println("a = " + a);

    System.out.println("b = " + b);

} while (a <= 100);

16) double

double keyword is used to declare primitive double type of variables.

double d1 = 23.56;
         
double d2 = 56.23;
         
double d3 = d1 + d2;
         
System.out.println(d3);

17) if 18) else

if and else keywords are used in if-else block.

Scanner sc = new Scanner(System.in);
         
System.out.println("Enter a string :");
         
String input = sc.next();
         
if(input.equalsIgnoreCase("JAVA"))
{
    System.out.println("It's JAVA");
}
else
{
    System.out.println("It's not JAVA");
}

19) enum

enum keyword is used to define enum types.

enum Color
{
    RED, GREEN, BLUE;
}
 
public class Test
{
    public static void main(String[] args)
    {
        Color c1 = Color.RED;
        System.out.println(c1);
    }
}

20) extends

extends keyword is used in inheritance. It is used when a class extends another class.

class SuperClass
{
    //Super Class
}
 
class SubClass extends SuperClass
{
    //Sub Class
}

21) final

final keyword is used when a class or a method or a field doesn’t need further modifications. final class can’t be extended, final method can’t be overridden and the value of a final field can’t be changed.

final class FinalClass
{
    final int finalVariable = 10;
     
    final void finalMethod()
    {
        //final method
    }
}

22) float

float keyword indicates primitive float type of variables.

float f1 = 45.26f;
         
float f2 = 84.25f;
         
float f3 = f2 - f1;
         
System.out.println(f3);

23) for

for loop is used to execute the set of statements until a condition is true.

for (int i = 0; i <= 10; i++)
{
    System.out.println(i);
}

24) implements

implements keyword is used while implementing an interface.

interface MyInterface
{
    void myMethod();
}
 
class MyClass implements MyInterface
{
    public void myMethod()
    {
        System.out.println("My Method");
    }
}

25) import

import keyword is used to import the members of a particular package into current java file.

import java.sql.*;
import java.util.Arrays;
import java.util.Scanner;

26) instanceOf

instanceOf is used to check whether an object is of specified type. The syntax for using instanceOf keyword is “Object_Reference instanceOf Type“.

class A
{
     //...
}
 
public class MainClass
{
    public static void main(String[] args) 
    {
        A a = new A();
         
        if(a instanceof A)
        {
            System.out.println("a is of type A");
        }
    }
}

27) int

int keyword is used to declare primitive integer type of variables.

int i1 = 10;
         
int i2 = 20;
         
int i3 = i1 *  i2;
         
System.out.println(i3);

28) interface

interface keyword is used to define the interfaces in java. It is a mechanism to achieve abstraction. There can be only abstract methods in the Java interface, not method body.

interface MyInterface
{
    void myMethod();
}

29) long

long is used to define the primitive long type variables.

long l1 = 101;
         
long l2 = 202;
         
long l3 = l1 +  l2;
         
System.out.println(l3);

30) native

native keyword is used with a method to indicate that a particular method is implemented in native code using Java Native Interfaces(JNI).

class AnyClass
{
    public native void anyMethod(int i, double d);
}

31) new

new keyword is used while creating the instances of a class.

class A
{
     //...
}
 
public class MainClass
{
    public static void main(String[] args) 
    {
        A a = new A();
    }
}

32) package

package keyword is used to specify a package to which the current file belongs to.

package pack1;
 
class A
{
     //...
}

33) private

private keyword is used to declare a member of a class as private. private methods and fields are visible within the class in which they are defined.

class A
{
    private int i = 111;   //private field
     
    private void method()
    {
        //private method
    }
}

34) protected

protected keyword is used to declare a member of a class as protected. protected members of a class are visible within the package only, but they can be inherited to any sub classes.

class A
{
    protected int i = 111;   //protected field
     
    protected void method()
    {
        //protected method
    }
}

35) public

public keyword is used to declare the members of a class or class itself as public. public members of a class are visible from anywhere and they can be inherited to any sub classes.

public class A
{
    public int i = 222;   //public field
     
    public A()
    {
        //public constructor
    }
     
    public void method()
    {
        //public method
    }
}

36) return

return keyword is used to return the control back to the caller from the method.

class A
{
    int method(int i)
    {
        return i*i;     //method returning a value
    }
}

37) short

short keyword is used to declare primitive short type variables.

short s1 = 11;
         
short s2 = 22;

38) static

static keyword is used to define the class level members of a class. static members of a class are stored in the class memory and you can access them directly through class name. No need to instantiate a class.

class A
{
    static int staticField = 555;    //Static Field
     
    static void staticMethod()
    {
        //Static method
    }
}
 
public class MainClass
{
    public static void main(String[] args) 
    {
        System.out.println(A.staticField);    //Accessing staticField via class name
         
        A.staticMethod();     //Accessing staticMethod via class name
    }
}

39) strictfp

strictfp keyword is used to implement the strict precision of floating point calculations on different platforms. strictfp can be used with classes, interfaces and methods.

strictfp interface I
{
    //strictfp applied on interface
}
 
strictfp class C
{
    //strictfp applied on class
}
 
class A
{
    strictfp void method()
    {
        //strictfp applied on method
    }
}

40) super

super keyword is used to access super class members inside a sub class.

class A
{
    int i;
     
    public A(int i) 
    {
        this.i = i;
    }
     
    void methodA()
    {
        System.out.println(i);
    }
}
 
class B extends A
{
    public B()
    {
        super(10);    //Calling super class constructor
    }
     
    void methodB()
    {
        System.out.println(super.i);    //accessing super class field
         
        super.methodA();    //Calling super class method
    }
}

41) synchronized

synchronized keyword is used to implement the synchronization in java. only one thread can enter into a method or a block which is declared as synchronized. Any thread which wants to enter synchronized method or block must acquire object lock of those methods or blocks.

class AnyClass
{
    synchronized void synchronizedMethod()
    {
        //Synchronized method
    }
     
    void anyMethod()
    {
        synchronized (this) 
        {
            //Synchronized block
        }
    }
}

42) this

this keyword is used to access other members of the same class.

class AnyClass
{
    int i;
  
    AnyClass()
    {
        System.out.println("First Constructor");
    }
  
    AnyClass(int j)
    {
        this();    //calling statement to First Constructor
        System.out.println("Second Constructor");
    }
  
    void methodOne()
    {
        System.out.println("From method one");
    }
  
    void methodTwo()
    {
        System.out.println(this.i);  //Accessing same class field
        this.methodOne();      //Accessing same class method
    }
}

43) throw

throw keyword is used to throw the exceptions manually.

public class MainClass
{
    public static void main(String[] args) 
    {
        try
        {
            //throwing NumberFormatException manually 
             
            throw new NumberFormatException();
        }
        catch(Exception ex)
        {
            System.out.println(ex);
        }
    }
}

44) throws

throws keyword is used to specify the exceptions which the current method may throw.

class A
{
    void method() throws NumberFormatException
    {
        int i = Integer.parseInt("abc");
    }
}

45) transient

transient keyword is used in serialization. A variable which is declared as transient will not be eligible for serialization.

class MyClass implements Serializable
{
    int a;
     
    transient String s;   //This will not be serialized
     
    double d;
}

46) void

void keyword is used to indicate that method returns nothing.

class A
{
    void methodReturnsNothing()
    {
        //Method returns no value
    }
}

47) volatile

volatile keyword is used in the concurrent programming. The value of a variable which is declared as volatile will be written into or read from the main memory.

class A
{
    public volatile int counter = 0;
}

48) while

while keyword is used in the while loop.

int i = 10;
         
while (i <= 100)
{
    System.out.println(i);
             
    i = i + 10;
}

49) goto 50) const

Both goto and const are reserved words in java but they are currently not used.

Note : true, false and null are not the keywords. They are literals in java.