- Java Tutorial
- Java Introduction
- Java Features
- Java Simple Program
- JVM, JDK and JRE
- Java Syntax
- Java Comments
- Java Keywords
- Java Variables
- Java Literals
- Java Separators
- Java Datatypes
- Java Operators
- Java Statements
- Java Strings
- Java Arrays
- Control Statement
- Java If
- Java If-else
- Java If-else-if
- Java Nested If
- Java Switch
- Iteration Statement
- Java For Loop
- Java For Each Loop
- Java While Loop
- Java Do While Loop
- Java Nested Loop
- Java Break/Continue
- Java Methods
- Java Methods
- Java Method Parameters
- Java Method Overloading
- Java Recursion
- Java OOPS
- Java OOPs
- Java Classes/Objects
- Java Inheritance
- Java Polymorphism
- Java Encapsulation
- Java Abstraction
- Java Modifiers
- Java Constructors
- Java Interface
- Java static keyword
- Java this keyword
- Java File Handling
- Java File
- Java Create File
- Java Read/Write File
- Java Delete File
- Java Program To
- Add Two Numbers
- Even or Odd Numbers
- Reverse a String
- Swap Two Numbers
- Prime Number
- Fibonacci Sequence
- Palindrome Strings
- Java Reference
- Java String Methods
- Java Math Methods
Java Keywords
Java keywords are reserved words with predefined meanings in the Java programming language. Here's a comprehensive list:
Reserved Words:
- Java keywords cannot be used as identifiers (e.g., variable names, class names).
- They are reserved for specific purposes within the language.
Example
public class Example {
// Declaration of a constant variable
public static final int MAX_SIZE = 100;
// Declaration of an abstract method
public abstract void display();
// Declaration of a method with boolean return type
public boolean isValid(int value) {
return value > 0;
}
public static void main(String[] args) {
// Declaration and instantiation of an object
Example obj = new Example();
// Switch statement with case branches
int choice = 2;
switch (choice) {
case 1:
System.out.println("Choice 1 selected");
break;
case 2:
System.out.println("Choice 2 selected");
break;
default:
System.out.println("Invalid choice");
}
// Looping construct using while loop
int i = 0;
while (i < 5) {
System.out.println("Iteration " + i);
i++;
}
}
}
This example demonstrates the use of various Java keywords such as abstract, final, boolean, switch, case, default, while, public, static, void, int, return, new, and System.out.println. Each keyword serves a specific purpose in defining the behavior and structure of the Java program.
Summary
Java keywords play crucial roles in defining the structure, behavior, and flow of Java programs. Understanding these keywords is essential for writing correct and efficient Java code.