java.lang.Character.toUpperCase(int codePoint) 字元(Unicode程式碼點)引數使用來自UnicodeData檔案的大小寫對映資訊轉換為大寫。
需要注意的是Character.isUpperCase(Character.toUpperCase(codePoint))某些範圍內並不總是返回true字元,尤其是那些符號和象形文字。
以下是java.lang.Character.toUpperCase()方法的宣告
public static int toUpperCase(int codePoint)
codePoint - 轉換字元(Unicode程式碼點)
此方法返回大寫字元,如果有任何大寫同等的字元;否則返回該字元本身。
NA
下面的例子顯示lang.Character.toUpperCase()方法的使用。
package com.yiibai; import java.lang.*; public class CharacterDemo { public static void main(String[] args) { // create 4 int primitives int cp1, cp2, cp3, cp4; // assign values to cp1, cp2 cp1 = 0x0072; // represents r cp2 = 0x0569; // represents ARMENIAN SMALL LETTER TO // assign uppercase of cp1, cp2 to cp3, cp4 cp3 = Character.toUpperCase(cp1); cp4 = Character.toUpperCase(cp2); String str1 = "Uppercase equivalent of " + cp1 + " is " + cp3; String str2 = "Uppercase equivalent of " + cp2 + " is " + cp4; // print cp3, cp4 values System.out.println( str1 ); System.out.println( str2 ); } }
讓我們來編譯和執行上面的程式,這將產生以下結果:
Uppercase equivalent of 114 is 82 Uppercase equivalent of 1385 is 1337