java.lang.Character.codePointCount(char[] a, int offset, int count)方法實例
java.lang.Character.codePointCount(char[ ] a, int offset, int count) 返回char數組參數的一個子Unicode代碼點的數量。
offset參數是子數組和count參數的第一個字符的索引指定於字符子數組的長度。子數組內未配對的代理算作每一個代碼點。
聲明
以下是java.lang.Character.codePointCount()方法的聲明
public static int codePointCount(char[] a, int offset, int count)
參數
-
a - char數組
-
offset - 第一個字符的給定char數組中的索引
-
count - 字符子數組的長度
返回值
此方法將返回指定子數組Unicode代碼點的數量。
異常
-
NullPointerException - 如果a為null。
-
IndexOutOfBoundsException - 如果offset或count為負,或者如果 offset + count大於給定數組的長度。
例子
下麵的例子顯示lang.Character.codePointCount()方法的使用。
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 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