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