Java Character toCodePoint()方法

java.lang.Character.toCodePoint(char high, char low) 指定代理对到其增补代码点值转换。此方法不验证指定的代理对。如果需要验证,调用者必须是使用isSurrogatePair。

1 语法

public static int toCodePoint(char high, char low)

2 参数

high:高代理项代码单元

low:低代理项代码单元

3 返回值

此方法返回从指定的代理对组成的增补代码点。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java Character toCodePoint()方法
 */
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

 

热门文章

优秀文章