java.lang.Character.toCodePoint()方法實例
java.lang.Character.toCodePoint(char high, char low) 指定代理對到其增補代碼點值轉換。此方法不驗證指定的代理對。如果需要驗證,調用者必須是使用isSurrogatePair。
聲明
以下是java.lang.Character.toCodePoint()方法的聲明
public static int toCodePoint(char high, char low)
參數
-
high - 高代理項代碼單元
-
low - 低代理項代碼單元
返回值
此方法返回從指定的代理對組成的增補代碼點。
異常
-
NA
例子
下麵的例子顯示lang.Character.toCodePoint()方法的使用。
package com.yiibai; import java.lang.*; public class CharacterDemo { public static void main(String[] args) { // create 2 char primitives ch1, ch2 char ch1, ch2; // assign values to ch1, ch2 ch1 = 'ud800'; ch2 = 'udc00'; // create an int primitive cp int cp; // assign code point value of surrogate pair ch1, ch2 to cp cp = Character.toCodePoint(ch1, ch2); String str = "Supplementary code point value is " + cp; // print cp value System.out.println( str ); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
Supplementary code point value is 65536