java.lang.Character.codePointCount(CharSequence seq, int beginIndex, int endIndex)方法实例
java.lang.Character.codePointCount(CharSequence seq, int beginIndex, int endIndex) 返回Unicode代码点指定字符序列的文本范围的数量。
文本范围始于指定的beginIndex和扩展到字符索引endIndex-1的文本范围。这样的长度(以字符)是endIndex- beginIndex。在文本范围内未配对的代理算作每一个代码点。
声明
以下是java.lang.Character.codePointCount()方法的声明
public static int codePointCount(CharSequence seq, int beginIndex, int endIndex)
参数
-
seq - 该字符序列
-
beginIndex - 索引的文本范围的第一个字符
-
endIndex - 文本范围的最后一个字符的索引
返回值
该方法返回指定的文本范围的Unicode代码点的数量。
异常
-
NullPointerException - 如果seq为null。
-
IndexOutOfBoundsException - 如果beginIndex是负数,或endIndex是比给定序列的长度大,或beginIndex是大于endIndex。
例子
下面的例子显示lang.Character.codePointCount()方法的使用。
package com.yiibai; import java.lang.*; public class CharacterDemo { public static void main(String[] args) { // create a CharSequence seq and assign value CharSequence seq = "Hello World!"; // create and assign value to bi, ei int bi = 4, ei = 8; // create an int res int res; // assign result of codePointCount on seq to res using bi, ei res = Character.codePointCount(seq, bi, ei); String str = "No. of Unicode code points is " + res; // print res value System.out.println( str ); } }
让我们来编译和运行上面的程序,这将产生以下结果:
No. of Unicode code points is 4