Keywords in Java

Below is the list of keywords in Java:

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

Example:

Java
/*package whatever //do not write package name here */

import java.io.*;

class GFG {
    public static void main(String[] args)
    {
        // int, char, double, float
        int age = 25;
        char initial = 'J';
        double pi = 3.14159;
        float discount = 0.1f; 

        // break keyword
        for (int i = 0; i < 5; i++) {
            if (i == 2) {
                break;
            }
            System.out.println(i);
        }

        // final keyword
        final String name = "Alice";

        // null keyword
        String emptyString = null;

        System.out.println("Age: " + age);
        System.out.println("Initial: " + initial);
        System.out.println("Pi: " + pi);
        System.out.println("Discount: " + discount);
        System.out.println("Name: " + name);
        System.out.println("Empty String: " + emptyString); 
    }
}

Output
0
1
Age: 25
Initial: J
Pi: 3.14159
Discount: 0.1
Name: Alice
Empty String: null

What is Keyword in Programming?

Keywords are predefined or reserved words that have special meaning to the compiler. In this article, we will discuss about keywords in programming, its importance, and usage in different languages.

Similar Reads

What is a Keyword?

A keyword is a reserved word in a programming language that has a predefined meaning and cannot be used for any other purpose, such as naming variables or functions. Keywords form the basic building blocks of a program’s syntax....

Importance of Keywords in Programming:

Keywords are essential because they define the structure and control flow of the program. They are part of the syntax that allows programmers to write understandable and maintainable code. Without keywords, programming languages would lack the necessary commands and structure to perform operations and control the logic....

Characteristics of Keywords:

Reserved: Cannot be used as identifiers (variable names, function names, etc.).Case-sensitive: In languages like C, C++, Java, and Python, keywords are usually case-sensitive (e.g., if is different from IF).Fixed meaning: Keywords have a fixed purpose and meaning defined by the language specification....

Types of Keywords:

Control Keywords: Used for control flow, such as if, else, while, for.Data Type Keywords: Define data types, such as int, float, char.Storage Class Keywords: Specify the storage duration and linkage, such as static, extern.Access Modifiers: Define access levels for classes, variables, methods (e.g., public, private, protected in Java and C++).Others: Keywords that don’t fall into the above categories but are essential for specific functionalities, like return, void, new....

Keywords in C:

Below is the list of keywords in C:...

Keywords in C++:

Below is the list of keywords in C++:...

Keywords in Java:

Below is the list of keywords in Java:...

Keywords in Python:

Below is the list of keywords in Python:...

Keywords in C#:

Below is the list of keywords in C#:...

Keywords in JavaScript:

Below is the list of keywords in JavaScript:...

Contact Us