Java.lang.Character.codePointCount() 方法
描述
java.lang.Character.codePointCount(char[ ] a, int offset, int count) 返回 char 数组参数的子数组中的 Unicode 代码点数。
offset 参数是子数组的第一个 char 的索引,count 参数指定子数组的长度,以 chars 为单位。 子数组中未配对的代理项各自计为一个代码点。
声明
以下是 java.lang.Character.codePointCount() 方法的声明。
public static int codePointCount(char[] a, int offset, int count)
参数
a − 字符数组
offset − 给定字符数组中第一个字符的索引
count − 以字符为单位的子数组的长度
返回值
此方法返回指定子数组中的 Unicode 代码点数。
异常
NullPointerException − 如果 a 为空。
IndexOutOfBoundsException − 如果 offset 或 count 为负,或者 offset + count 大于给定数组的长度。
示例
下面的例子展示了 lang.Character.codePointCount() 方法的使用。
package com.tutorialspoint; 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 offset, count int offset = 1, count = 3; // create an int res int res; // assign result of codePointCount on subarray of c to res res = Character.codePointCount(c, offset, count); String str = "No. of Unicode code points is " + res; // print res value System.out.println( str ); } }
让我们编译并运行上面的程序,这将产生下面的结果 −
No. of Unicode code points is 3