java.lang.Character.codePointAt(char[ ] a, int index, int limit)方法实例
java.lang.Character.codePointAt(char[ ] a, int index, int limit) 返回char数组,只能用于数组元素与指数低于上限的定索引上的代码点。
如果给定的索引字符数组中的char值在高代理项范围,下面的指数小于极限,下面索引处的char值属于低代理项范围,则增补代码点对应于此代理项对被返回。否则,返回给定索引处的char值。
声明
以下是java.lang.Character.codePointAt()方法的声明
public static int codePointAt(char[] a, int index, int limit)
参数
-
a - 字符数组
-
index - 索引为char值(Unicode代码单元)要转换char数组
-
limit - 可以在字符数组于所使用的最后一个数组元素之后的索引
返回值
此方法将返回给定索引处的Unicode代码点。
异常
-
NullPointerException -如果a为null。
-
IndexOutOfBoundsException - 如果索引参数比的限制参数负或不小于,或者如果限制参数为负或大于字符数组的长度。
例子
下面的例子显示lang.Character.codePointAt()方法的使用。
package com.yiibai; 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