logo

Java karakter toUpperCase() metódus

A nagybetűs (char ch) A Character class metódusa a Unicode Data fájl által biztosított kis- és nagybetűk leképezési információi segítségével nagybetűssé alakítja az adott karakter argumentumot.

Megjegyzendő, hogy a Character.isUpperase(Character.UpperCase(ch)) egyes karaktereknél nem mindig igaz.

Valójában a String.toUpperCase() használható a karakterek nagybetűsre való leképezésére. A karakterlánc-esetek leképezésének számos előnye van a karakteres esetleképezéshez képest. A karakterlánc-kisbetű-leképezés használható helyi érzékeny leképezések, környezetérzékeny leképezések végrehajtására, míg a karakteres-betű-leképezés nem használható.

Szintaxis

 public static char toUpperCase(char ch) 

Paraméter

ch : Ezt a karaktert kell átalakítani.

Visszatérési érték

A toUpperCase(char ch) metódus az adott karakter nagybetűjét adja vissza. Ellenkező esetben ez a metódus magát a karaktert adja vissza.

1. példa

 public class JavaCharacterToUpperCaseExample1 { public static void main(String[] args) { // Create four char primitives. char ch1, ch2, ch3, ch4; // Assign the values to ch1 and ch2. ch1 = 'm'; ch2 = 'q'; // Assign the uppercase of ch1 and ch2 to ch3 and ch4 respectively. ch3 = Character.toUpperCase(ch1); ch4 = Character.toUpperCase(ch2); String str1 = 'The uppercase of the character '' + ch1 + '' is given as: ' + ch3; String str2 = 'The uppercase of the character '' + ch2 + '' is given as: ' + ch4; // Print the values of ch1 and ch2. System.out.println( str1 ); System.out.println( str2 ); } } 
Tesztelje most

Kimenet:

kép háttérként css-ben
 The titlecase of character 'm' is given as: M The titlecase of character 'q' is given as: Q 

2. példa

 public class JavaCharacterToUpperCaseExample2{ public static void main(String[] args) { // Create four char primitives. char ch1, ch2, ch3, ch4; // Assign the values to ch1 and ch2. ch1 = '+'; ch2 = 'f'; // Assign the uppercase of ch1 and ch2 to ch3 and ch4 respectively. ch3 = Character.toUpperCase(ch1); ch4 = Character.toUpperCase(ch2); String str1 = 'The uppercase of the character '' + ch1 + '' is given as: ' + ch3; String str2 = 'The uppercase of the character '' + ch2 + '' is given as: ' + ch4; // Print the values of ch1 and ch2.. System.out.println( str1 ); System.out.println( str2 ); } } 
Tesztelje most

Kimenet:

 The uppercase of the character '+' is given as: + The uppercase of the character 'F' is given as: F 


Java karakter toUpperCase(int codePoint) Method

A nagybetűs (int codePoint) A Character class metódusa az adott karakter (Unicode kódpont) argumentumot nagybetűssé alakítja a Unicode Data fájl által biztosított kis- és nagybetű-leképezési információk segítségével.

Megjegyzendő, hogy a Character.isUpperase(Character.UpperCase(codePoint)) egyes karaktereknél nem mindig igaz.

Valójában a String.toUpperCase() használható a karakterek nagybetűsre való leképezésére. A karakterlánc-esetek leképezésének számos előnye van a karakteres esetleképezéshez képest. A karakterlánc-kisbetű-leképezés használható helyi érzékeny leképezések, környezetérzékeny leképezések végrehajtására, míg a karakteres-betű-leképezés nem használható.

Szintaxis

 public static int toUpperCase(int codePoint) 

Paraméter

codePoint : A kódpont az a karakter, amelyet tesztelni kell.

Visszatérési érték

A toUpperCase(int codePoint) metódus az adott karakter nagybetűjét adja vissza (Unicode kódpont). Ellenkező esetben ez a metódus magát a karaktert adja vissza.

1. példa

 public class JavaCharactertoUpperCaseExample_1 { public static void main(String[] args) { // Initialize two char primitives. int codepoint1 = 102; int codepoint2 = 110; // Convert the codepoints to char type. char ch1 = (char) codepoint1; char ch2 = (char) codepoint2; // Convert the codepoints to uppercase. char upper1 = Character.toUpperCase(ch1); char upper2 = Character.toUpperCase(ch2); // Print the result. System.out.println('The uppercase for the character '' + ch1 + '' is given as: ' + upper1); System.out.println('The uppercase for the character '' + ch2 + '' is given as: ' + upper2); } } 
Tesztelje most

Kimenet:

ábécé számokhoz
 The uppercase for the character 'f' is given as: F The uppercase for the character 'n' is given as: N 

2. példa

 public class JavaCharactertoUpperCaseExample_2 { public static void main(String[] args) { // Initialize two char primitives. int codepoint1 = 119; int codepoint2 = 80; // Convert the codepoints to char type. char ch1 = (char) codepoint1; char ch2 = (char) codepoint2; // Convert the codepoints to uppercase. char upper1 = Character.toUpperCase(ch1); char upper2 = Character.toUpperCase(ch2); // Print the result. String str1 = 'The uppercase for the character '' + ch1 + '' is given as: ' + upper1; String str2 = 'The uppercase for the character '' + ch2 + '' is given as: ' + upper2; System.out.println(str1); System.out.println(str2); } } 
Tesztelje most

Kimenet:

 The uppercase for the character 'w' is given as: W The uppercase for the character 'P' is given as: P