Curriculum
Course: Java Basic
Login

Curriculum

Java Basic

Java Home

0/1

Java Introduction

0/1

Java Get Started

0/1

Java Syntax

0/1

Java Comments

0/1

Java Type Casting

0/1

Java Operators

0/1

Java Booleans

0/1

Java Switch

0/1

Java Break / Continue

0/1

Java Errors and Exception

0/1
Text lesson

Java Identifiers

Identifiers

Every Java variable requires a unique name, known as an identifier.

Identifiers can be brief, such as x and y, or more descriptive, like age, sum, or totalVolume.

Note: Employing descriptive names is advised to ensure the creation of comprehensible and maintainable code:

Example

// Good int

minutesPerHour = 60;

// OK, but not so easy to understand what m actually is 

int m = 60;

Here are the general rules for naming variables:

  1. Variable names can consist of letters, digits, underscores, and dollar signs.
  2. They must commence with a letter and can also start with $ or _ although it's not recommended.
  3. Names are case-sensitive, distinguishing between "myVar" and "myvar".
  4. Avoid using reserved words, such as Java keywords like int or boolean, as names.