What is char in java?

青灯夜游
Release: 2019-12-27 14:58:05
Original
7636 people have browsed it

What is char in java?

char is a reserved word in Java, representing a data type. Unlike other languages, char is 16-bit in Java because Java uses Unicode encoding. However, the 8-bit ASCII code is included in the Unicode encoding, and its value corresponds to 0~127.

Char is one of the eight basic data types of Java.

Char is called "character type" in Java and occupies 2 bytes.

A character constant is a character enclosed in single quotes, and what a character constant stores in memory is the sorting position of the character in the Unicode character set, that is, an integer.

For example:

char x='a'
Copy after login

The memory x stores the sorting position 97 of character a in the Unicode character set. Therefore, the above statement is allowed to be written as char x=97;

Recommended learning: Java video tutorial

The above is the detailed content of What is char 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 [email protected]
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!