logo

Metoda Java Character toUpperCase().

The toUpperCase(char ch) metoda razreda Character pretvori dani argument znakov v velike črke z uporabo informacij o preslikavi velikih in malih črk, ki jih zagotavlja datoteka Unicode Data.

Upoštevati je treba, da Character.isUpperase(Character.UpperCase(ch)) za nekatere znake morda ne vrne vedno true.

avl drevo

Dejansko se lahko String.toUpperCase() uporabi za preslikavo znakov v velike črke. Preslikava velikih in malih črk nizov ima različne prednosti v primerjavi s preslikavo velikih in malih črk znakov. Preslikavo velikih in malih črk nizov je mogoče uporabiti za izvajanje lokalno občutljivih preslikav, preslikav, ki so občutljive na kontekst, medtem ko preslikave velikih in malih črk ni mogoče uporabiti.

Sintaksa

 public static char toUpperCase(char ch) 

Parameter

pogl : To je znak, ki ga je treba pretvoriti.

Povratna vrednost

Metoda toUpperCase(char ch) vrne veliko črko danega znaka. V nasprotnem primeru ta metoda vrne sam znak.

Primer 1

 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 ); } } 
Preizkusite zdaj

Izhod:

 The titlecase of character 'm' is given as: M The titlecase of character 'q' is given as: Q 

Primer 2

 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 ); } } 
Preizkusite zdaj

Izhod:

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


Metoda Java Character toUpperCase(int codePoint).

The toUpperCase(int codePoint) metoda razreda Character pretvori dani argument znaka (kodna točka Unicode) v velike črke z uporabo informacij o preslikavi velikih in malih črk, ki jih zagotavlja podatkovna datoteka Unicode.

Upoštevati je treba, da Character.isUpperase(Character.UpperCase(codePoint)) morda ne vrne vedno true za nekatere znake.

Dejansko se lahko String.toUpperCase() uporabi za preslikavo znakov v velike črke. Preslikava velikih in malih črk nizov ima različne prednosti v primerjavi s preslikavo velikih in malih črk znakov. Preslikavo velikih in malih črk niza je mogoče uporabiti za izvajanje lokalno občutljivih preslikav, kontekstno občutljivih preslikav, medtem ko preslikave velikih in malih črk ni mogoče uporabiti.

Sintaksa

 public static int toUpperCase(int codePoint) 

Parameter

codePoint : CodePoint je znak, ki ga je treba preizkusiti.

Povratna vrednost

Metoda toUpperCase(int codePoint) vrne veliko črko danega znaka (kodna točka Unicode). V nasprotnem primeru ta metoda vrne sam znak.

java break

Primer 1

 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); } } 
Preizkusite zdaj

Izhod:

 The uppercase for the character 'f' is given as: F The uppercase for the character 'n' is given as: N 

Primer 2

 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); } } 
Preizkusite zdaj

Izhod:

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