Keywords in Java

Notes:

Keywords in Java programming language:

Keywords: Keywords are reserved words.
Their meaning and purpose is already defined within the Java compiler
Keywords must be written in lower case letters.
Keywords should not be used for naming identifiers or programmer defined names.
For naming variables, constants, arrays, methods, classes, interfaces, enums etc. should not use keywords

Ex (50+): List of all java keywords

const volatile static

byte char short int long
float double
boolean true false

if else switch case
for while do
break continue goto return

void

class abstract final interface enum
new null
extends implements

default private protected public

this super

try catch throw throws finally
import package
instanceof assert synchronized
transient native strictfp