📜  所有Java关键字的列表

📅  最后修改于: 2022-05-13 01:55:35.652000             🧑  作者: Mango

所有Java关键字的列表

关键字或保留字是一种语言中用于某些内部流程或表示某些预定义操作的字词。因此,这些词不允许用作变量名或对象。如果我们这样做,我们将得到如下所示的编译时错误:

插图:

Java
// Java Program to Illustrate What If We use the keywords as the variable name
// Code Contributed by @Shubham Jain
 
class HelloWorld {
    public static void main(String[] args)
    {
 
        int this = "Hello World!"; // Note "this" is a reserved word in java
        System.out.println(this);
    }
 }


输出:

Errors in Code : Compiler Error

prog.java:11: error: not a statement
        int this = "Hello World!"; // Note "this" is a reserved word in java
        ^
prog.java:11: error: ';' expected
        int this = "Hello World!"; // Note "this" is a reserved word in java
           ^
2 errors

Java包含一个关键字或保留字列表,无论是 IDE 还是编辑器,这些关键字或保留字也以不同的颜色突出显示,以区分灵活字和保留字之间的差异。下表中列出了它们以及与之相关的主要操作。

S.NoKeywordUsage
1.abstractSpecifies that a class or method will be implemented later, in a subclass 
2.assertAssert describes a predicate placed in a java program to indicate that the developer thinks that the predicate is always true at that place.
3. booleanA data type that can hold True and False values only 
4.breakA control statement for breaking out of loops.
5.byteA data type that can hold 8-bit data values 
6.caseUsed in switch statements to mark blocks of text
7.catchCatches exceptions generated by try statements
8.char A data type that can hold unsigned 16-bit Unicode characters
9.classDeclares a new class
10.continueSends control back outside a loop 
11.defaultSpecifies the default block of code in a switch statement
12.doStarts a do-while loop
13.doubleA data type that can hold 64-bit floating-point numbers
14.elseIndicates alternative branches in an if statement 
15.enumA Java keyword is used to declare an enumerated type. Enumerations extend the base class.
16.extendsIndicates that a class is derived from another class or interface 
17.finalIndicates that a variable holds a constant value or that a method will not be overridden
18.finallyIndicates a block of code in a try-catch structure that will always be executed
19.floatA data type that holds a 32-bit floating-point number 
20.forUsed to start a for loop
21.ifTests a true/false expression and branches accordingly
22.implementsSpecifies that a class implements an interface 
23.import References other classes
24.instanceofIndicates whether an object is an instance of a specific class or implements an interface 
25.intA data type that can hold a 32-bit signed integer 
26.interfaceDeclares an interface
27.longA data type that holds a 64-bit integer
28.nativeSpecifies that a method is implemented with native (platform-specific) code 
29.newCreates new objects 
30.nullThis indicates that a reference does not refer to anything 
31.packageDeclares a Java package
32.privateAn access specifier indicating that a method or variable may be accessed only in the class it’s declared in
33.protectedAn access specifier indicating that a method or variable may only be accessed in the class it’s declared in (or a subclass of the class it’s declared in or other classes in the same package)
34.publicAn access specifier used for classes, interfaces, methods, and variables indicating that an item is accessible throughout the application (or where the class that defines it is accessible)
35.returnSends control and possibly a return value back from a called method 
36.shortA data type that can hold a 16-bit integer 
37staticIndicates that a variable or method is a class method (rather than being limited to one particular object)
38.strictfpA Java keyword is used to restrict the precision and rounding of floating-point calculations to ensure portability.
39.superRefers to a class’s base class (used in a method or class constructor) 
40.switchA statement that executes code based on a test value 
41.synchronizedSpecifies critical sections or methods in multithreaded code
42.thisRefers to the current object in a method or constructor 
43.throw Creates an exception 
44.throwsIndicates what exceptions may be thrown by a method 
45.transientSpecifies that a variable is not part of an object’s persistent state
46.tryStarts a block of code that will be tested for exceptions 
47.voidSpecifies that a method does not have a return value
48.volatileThis indicates that a variable may change asynchronously
49.whileStarts a while loop