java.lang.Character.codePointBefore(char[ ] a, int index, int start)方法實例
java.lang.Character.codePointBefore(char[ ] a, int index, int start) 返回的字符數組,其中僅可用於數組元素與索引大於或等於start 的給定索引前麵的代碼點。
如果在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, int start)
參數
-
a - char數組
-
index - 下麵返回代碼點的索引
-
start - 第一個數組元素的字符數組於的索引
返回值
此方法將返回給定索引之前的Unicode代碼點值。
異常
-
NullPointerException - 如果 a 為 null.
-
IndexOutOfBoundsException - 如果索引參數不大於start參數或大於字符數組的長度,或如果開始參數為負或不大於字符數組的長度。
例子
下麵的例子顯示lang.Character.codePointBefore()方法的使用。
package com.yiibai; import java.lang.*; public class CharacterDemo { public static void main(String[] args) { // create a char array c char[] c = new char[] { 'A', 'b', 'C', 'd'}; // create and assign value to index, start int index = 3, start = 1; // create an int res int res; // assign result of codePointBefore on c at index to res using start res = Character.codePointBefore(c, index, start); String str = "Unicode code point is " + res; // print res value System.out.println( str ); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
Unicode code point is 67