Java Character codePointAt()方法
java.lang.Character.codePointAt(char[ ] a, int index) 返回char数组的给定索引上的代码点。
如果给定的索引的字符阵列中的字符值是在高代理范围,下面的指数小于字符数组的长度,并在以下索引处的字符值是在低代理范围,然后对应于此代理项对的增补代码点返回。否则,返回给定索引处的char值。
1 语法
public static int codePointAt(char[] a, int index)
2 参数
a:字符数组
index:索引为char值(Unicode代码单元)于要转换的char数组
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' };
// craete 2 int's res, index and assign value to index
int res, index = 0;
// assign result of codePointAt on array c at index to res
res = Character.codePointAt(c, index);
String str = "Unicode code point is " + res;
// print res value
System.out.println( str );
}
}
输出结果为:
Unicode code point is 97
热门文章
优秀文章