search
HomeJavaJavagetting StartedHow to define variables in java

How to define variables in java

Apr 13, 2021 pm 04:32 PM
javavariable

In java, variables can be defined through the statement "data type identifier;" or "data type identifier = initialization value;"; the identifier is also called the variable name, which consists of numbers (0~9) , uppercase and lowercase letters, underscores, dollar signs ($), RMB signs (¥), and all ASCII codes before hexadecimal 0xc0.

How to define variables in java

The operating environment of this tutorial: windows7 system, java8 version, DELL G3 computer.

Define/Declare variables

For developers, variables are aliases used to describe a piece of information. One or more variables can be used in program code. Various types of information can be stored in variables, such as login information, version name, file size, a certain English word, and flight ticket price.

In Java, users can declare variables by specifying data types and identifiers. The basic syntax is as follows:

DataType identifier;

or

DataType identifier=value;

The above syntax code involves 3 Each content: DataType, identifier and value, the specific description is as follows:

  • DataType: variable type, such as int, string, char and double, etc.

  • identifier: identifier, also called variable name.

  • value: The value when the variable is declared.

The naming convention for variable identifiers is as follows:

  • The first character must be a letter, underscore (-), dollar symbol ($) or RMB symbol (¥).

  • The identifier consists of numbers (0~9), uppercase letters (A~Z), lowercase letters (a~z), underscore (-), dollar sign ($), RMB symbol (¥) and all ASCII codes before hexadecimal 0xc0.

  • Keywords and reserved words cannot be used as identifiers.

  • There is no limit on the length of identifiers.

  • Identifiers are case-sensitive.

The following code declares variables of type String, boolean and int respectively.

String employee;    // String 类型的变量
boolean isSave;    // boolean 类型的变量
int create_at;    // int 类型的变量

Recommended related video tutorials: Java video tutorial

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

Statement
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor