java.lang.Character.codePointBefore(char[ ] a, int index)方法實例
java.lang.Character.codePointBefore(char[ ] a, int index) 返回char數組的給定索引前麵的代碼點。
如果在(index- 1)的char值的字符數組中是在低代理項範圍,(index- 2)不為負,並在char值(index- 2)char數組於處於高代理範圍內,則對應於此代理項對的增補代碼點返回。否則,返回在(index- 1)的char值。
聲明
以下是java.lang.Character.codePointBefore()方法的聲明
public static int codePointBefore(char[] a, int index)
參數
-
a - 字符數組
-
index - 下麵返回代碼點的索引
返回值
此方法將返回給定索引之前Unicode代碼點值。
異常
-
NullPointerException - 如果 a 為 null.
-
IndexOutOfBoundsException - 如果索引參數大於字符數組的長度或小於1。
例子
下麵的例子顯示lang.Character.codePointBefore()方法的使用。
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 index int index = 2; // create an int res int res; // assign result of codePointBefore on array c at index to res res = Character.codePointBefore(c, index); String str = "Unicode code point is " + res; // print res value System.out.println( str ); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
Unicode code point is 98