Java Character codePointAt()方法

java.lang.Character.codePointAt(char[ ] a, int index, int limit) 返回char数组,只能用于数组元素与指数低于上限的定索引上的代码点。

如果给定的索引字符数组中的char值在高代理项范围,下面的指数小于极限,下面索引处的char值属于低代理项范围,则增补代码点对应于此代理项对被返回。否则,返回给定索引处的char值。

1 语法

public static int codePointAt(char[] a, int index, int limit)

2 参数

a:字符数组

index:索引为char值(Unicode代码单元)要转换char数组

limit:可以在字符数组于所使用的最后一个数组元素之后的索引

3 返回值

此方法将返回给定索引处的Unicode代码点。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java Character codePointAt()方法
 */
import java.lang.*;

public class CharacterDemo {

   public static void main(String[] args) {

      // create a char array c and assign values
      char[] c = new char[] { 'a', 'b', 'c', 'd', 'e' };

      // create and assign value to inetgers index, limit
      int index  = 1, limit = 3;

      // create an int res
      int res;

      // assign result of codePointAt on array c at index to res using limit
      res = Character.codePointAt(c, index, limit);

      String str = "Unicode code point is " + res;

      // print res value
      System.out.println( str );
   }
}

输出结果为:

Unicode code point is 98

 

热门文章

优秀文章