位置:首頁 > Java技術 > java.lang > java.lang.Character.codePointAt(char[ ] a, int index)方法實例

java.lang.Character.codePointAt(char[ ] a, int index)方法實例

java.lang.Character.codePointAt(char[ ] a, int index) 返回char數組的給定索引上的代碼點。

如果給定的索引的字符陣列中的字符值是在高代理範圍,下麵的指數小於字符數組的長度,並在以下索引處的字符值是在低代理範圍,然後對應於此代理項對的增補代碼點返回。否則,返回給定索引處的char值。

聲明

以下是java.lang.Character.codePointAt()方法的聲明

public static int codePointAt(char[] a, int index)

參數

  • a - 字符數組

  • index - 索引為char值(Unicode代碼單元)於要轉換的char數組

返回值

此方法將返回給定索引處的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' };

      // 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