Home > Java > Javagetting Started > what is identifier in java

what is identifier in java

王林
Release: 2019-11-11 11:27:20
Original
4923 people have browsed it

what is identifier in java

What is a java identifier

An identifier is a sequence of characters that names a class, interface, method, variable, etc.

Identifier composition rules:

1, English upper and lower case letters

2, numbers

3, $ and _

Notes:

1. It cannot start with a number

2. It cannot be a keyword in java

3. Distinguish Case

Common naming rules:

A. Package: all lowercase

Single-level package: lowercase

Example:

liuyi,com
Copy after login

Multi-level packages: lowercase, separated by .

Example:

cn.itcast,com.baidu
Copy after login

B. Class or interface

One word: capitalize the first letter of each word

Example:

Student,Demo
Copy after login

Multiple words: capitalize the first letter of each word

Example:

HelloWorld,StudentName
Copy after login

C. Method or variable

One word: the first letter is lowercase

Example:

name,main
Copy after login

Multiple words: starting from the second word, The first letter of each word is capitalized

Example:

studentAge,showAllNames()
Copy after login

D.Constant

All capital letters

One word: capital

Example:

PI
Copy after login

Multiple words: capitalized and separated by _

Example:

STUDENT_MAX_AGE
Copy after login

Recommended tutorial: Java tutorial

The above is the detailed content of what is identifier in java. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template