Open In App

Java Identifiers

Last Updated : 06 Oct, 2025
Suggest changes
Share
724 Likes
Like
Report

An identifier in Java is the name given to Variables, Classes, Methods, Packages, Interfaces, etc. These are the unique names used to identify programming elements. Every Java Variable must be identified with a unique name.

Java
class Geeks {  public static void main {   int x = 9;   } } 

The image below describes Identifiers in this program:

class_name-

Rules For Naming Java Identifiers

There are certain rules for defining a valid Java identifier. These rules must be followed, otherwise, we get a compile-time error. These rules are also valid for other languages like C and C++. 

  • The only allowed characters for identifiers are all alphanumeric characters([A-Z],[a-z],[0-9]), '$'(dollar sign) and '_' (underscore). For example, "geek@" is not a valid Java identifier as it contains a '@', a special character.
  • Identifiers should not start with digits([0-9]). For example, "123geeks" is not a valid Java identifier.
  • Java identifiers are case-sensitive.
  • There is no limit on the length of the identifier, but it is advisable to use an optimum length of 4 - 15 letters only.
  • Reserved Words can't be used as an identifier. For example, "int while = 20;" is an invalid statement as a while is a reserved word.

Note: Java has 53 reserved words (including 50 keywords and 3 literals), that are not allowed to be used as identifiers.

Examples of Valid Identifiers

MyVariable
MYVARIABLE
myvariable
x
i
x1
i1
_myvariable
$myvariable
sum_of_array
geeks123

Examples of Invalid Identifiers

My Variable // contains a space
123geeks // Begins with a digit
a+c // plus sign is not an alphanumeric character
variable-2 // hyphen is not an alphanumeric character
sum_&_difference // ampersand is not an alphanumeric character

Related Article:


Article Tags :

Explore