About the instance analysis of the packaging class Character
1.Construction method:
##Character ch1 = new Character( 'A');
Create a Character object with a char type variable as a parameter;
2. Commonly used methods:
The Character class provides many methods to complete operations on characters:
①charValue(): Return value type: char;
##Function description: Return Character object value.
②compareTo(Character anotherCharacter): Return value type: int
Function Description: Compare two Character objects, return 0 if they are equal, return a negative value if the calling object is smaller than anotherCharacter object,
Otherwise return a positive value
③equals(Character anotherCharacter): Return value type: boolean
Function Description: Compare two Character objects, return true if they are equal, otherwise return false.
④toUpperCase(char ch): Convert character parameters to uppercase (requires parameters)
⑤toLowerCase(char ch): Convert character parameters to lowercase ()
⑥toString (): Return value type: String
Function description: There are three calling methods:
1.String str = Character.toString('A');
##2.Character ch = Character.valueOf('A');String str = Character.toString(ch);
##3
.Character ch = Character.valueOf('A');
String str = ch.toString();
##⑦isUpperCase(char ch): Return value type: boolean
Function description: Determine whether the specified character is uppercase (requires parameters)
⑧isLowerCase (char ch): Return type: boolean
Function description: Determine whether the specified character is lowercase (requires parameters)
##⑨valueOf(char ch);Return value type: Character object
Function description: Return the Character object whose value is ch.
#Note: The parameter can only be of char type, not String type.
eg:
##<span style="font-size: 14px;">package Number;<br/>public class IntFunction{<br/> public static void main (String []args)<br/> {<br/> Character ch1 = Character.valueOf('A');<br/> Character ch2 = new Character('A');<br/> Character ch3 = Character.valueOf('C');<br/> char c1 = ch1.charValue();<br/> char c2 = ch2.charValue();<br/> char c3 = ch3.charValue();<br/> System.out.println("ch1:" + c1 + ", ch2:" + c2 + ", ch3:" + c3);<br/> int a1 = ch1.compareTo(ch2);<br/> int a2 = ch1.compareTo(ch3);<br/> System.out.println("ch1.compareTo(ch2):" + a1 + ", ch1.compareTo(ch3):" + a2);<br/> boolean bool1 = ch1.equals(ch2);<br/> boolean bool2 = ch1.equals(ch3);<br/> System.out.println("ch1.equals(ch2): " + bool1 + ", ch1.equals(ch3): " + bool2);<br/> boolean bool3 = Character.isUpperCase(ch1);<br/> boolean bool4 = Character.isUpperCase('s');<br/> System.out.println("bool3:" + bool3 + ", bool4:" + bool4);<br/> char c4 = Character.toUpperCase('s');<br/> Character c5 = Character.toLowerCase(ch1);<br/> System.out.println("c4:" + c4 + ", c5:" + c5);<br/> } <br/>}<br/>/*运行结果:<br/>ch1:A, ch2:A, ch3:C<br/>ch1.compareTo(ch2):0, ch1.compareTo(ch3):-2<br/>ch1.equals(ch2): true, ch1.equals(ch3): false<br/>bool3:true, bool4:false<br/>c4:S, c5:a<br/>*/<br/></span>
1. Free Java video tutorial
2.
About the usage analysis of the Character class
3. Detailed explanation of examples of the Character class
4. Detailed explanation of the differences between Character and char methods
5. Detailed explanation of the Character class in Java
The above is the detailed content of About the instance analysis of the packaging class Character. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

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

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Use Java's Character.isDefined() function to determine whether a character is a defined character. In Java programming, sometimes you need to determine whether a character is a defined character. For convenience, Java provides the isDefined() function of the Character class, which can help us quickly determine whether a character is a defined character. This article explains how to use this function and provides some code examples. Character class represents a single character in Java

Interpretation of Java documentation: Detailed explanation of the isAlphabetic() method of the Character class 1. Overview In the Java Character class, the isAlphabetic() method is used to determine whether a given character is an alphabetic character. It returns a boolean value, true indicating that the given character is an alphabetic character, false indicating that the given character is not an alphabetic character. This article will provide a detailed analysis of the use and principle of this method, and provide code examples to help readers better understand

Java uses the isLetterOrDigit() function of the Character class to determine whether a character is a letter or number. In Java programming, we often need to perform some operations and judgments on characters. One of the common needs is to determine whether a character is a letter or a number. Java provides the isLetterOrDigit() function of the Character class to help us implement this function. The Character class is a wrapper class used to operate and judge characters.

Use Java's Character.isLetterOrDigit() function to determine whether a character is a letter or number. In Java, we often need to determine whether a character is a letter or number. In order to simplify this process, Java provides a built-in function Character.isLetterOrDigit(), which can help us quickly complete this judgment. The Character.isLetterOrDigit() function accepts a character as a parameter

Use java's Character.isUpperCase() function to determine whether a character is an uppercase letter. In Java programming, sometimes we need to determine whether a character is an uppercase letter. Fortunately, Java provides a very convenient way to achieve this function, which is to use the isUpperCase() function of the Character class. This article will introduce how to use this function to make judgments and illustrate it with code examples. First, we need to understand Chara

Java documentation interpretation: Detailed explanation of the isLowerCase() method of the Character class. The Character class in Java provides many methods to handle character operations. The isLowerCase() method is used to determine whether a character is a lowercase letter. The specific use and application scenarios of this method will be explained in detail in this article. 1. The function and usage of isLowerCase() method The isLowerCase() method of Character class

Use the isUpperCase() method of the Character class in Java to determine whether a character is an uppercase letter. In the Java programming language, we often need to determine whether a character is an uppercase letter. In order to realize this function, Java provides the Character class, whose isUpperCase() method can determine whether a character is an uppercase letter. This article will introduce the use of this method and sample code. Use isUpperCase() of the Character class

Use Java's Character.isWhitespace() function to determine whether a character is a space. In daily programming, we often encounter situations where we need to determine whether a character is a space. Java provides a very convenient method: Character.isWhitespace(). This method can determine whether a character is a space character in Unicode, not just ASCII space characters. Here’s how to use Chara
