In Java, the char primitive type is used to represent a single character. It can hold any character from the ASCII or Unicode character sets, which includes characters from various languages and scripts.
The char type is declared using the keyword char and occupies 2 bytes of memory. It can store characters using either their Unicode representation or the corresponding escape sequences. For example:
char letterA = 'A';
char digit7 = '7';
char euroSymbol = '\u20AC'; // Unicode representation for the Euro symbol
char newLine = '\n'; // Escape sequence for a new line
In the above examples, letterA stores the character ’A’, digit7 stores the character ’7’, euroSymbol stores the Euro symbol (€), and newLine stores the newline command character.
Java provides various methods and operators to work with char values. Some commonly used methods include:
Table2.4.1.
Character.isLetter(char ch)
Checks if the specified character is a letter.
Character.isDigit(char ch)
Checks if the specified character is a digit.
Character.isWhitespace(char ch)
Checks if the specified character is whitespace.
Character.toLowerCase(char ch)
Converts the specified character to lowercase.
Character.toUpperCase(char ch)
Converts the specified character to uppercase.
Note that char values can also be used in arithmetic expressions, as they are internally represented as two-byte integers, similar to a short. For example, in JShell:
jshell> char ch; // Declare a char variable ch
ch ==> '\000' // Default value of 0
| created variable ch : char
jshell> ch = 'A' + 1; // Assign 'A' + 1 to it
ch ==> 'B'
| assigned to ch : char
jshell> ch // The value of ch is 'B'
ch ==> 'B' // ASCII code for 'A' is 65 and 'B' is 66
| value of ch : char
jshell>
Overall, the char primitive type in Java allows you to work with individual characters, making it useful for text processing, string manipulation, and various other tasks involving character-level operations.
Activity2.4.1.
Using JShell in verbose mode, enter a char literal using single-quote notation. Make sure that JShell tells you that your literal is of type char.