java.lang.StringBuilder.codePointBefore()方法實例
java.lang.StringBuilder.codePointBefore() 方法指定索引之前返回字符(Unicode代碼點)。該指數是指範圍從1到 length()的char值(Unicode代碼單元)。
聲明
以下是java.lang.StringBuilder.codePointBefore()方法的聲明
public int codePointBefore(int index)
參數
-
index -- 這是接下來應返回的代碼點索引。
返回值
此方法返回給定索引之前的Unicode代碼點值。
異常
-
IndexOutOfBoundsException -- 如果索引參數比該序列的長度大或小於1。
例子
下麵的例子顯示java.lang.StringBuilder.codePointBefore()方法的使用。
package com.yiibai; import java.lang.*; public class StringBuilderDemo { public static void main(String[] args) { StringBuilder str = new StringBuilder("programming"); System.out.println("string = " + str); // returns the codepoint before index 3 int retval = str.codePointBefore(3); System.out.println("Character(unicode point) = " + retval); str = new StringBuilder("amrood admin "); System.out.println("string = " + str); // returns the codepoint before index 6 retval = str.codePointBefore(6); System.out.println("Character(unicode point) = " + retval); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
string = programming Character(unicode point) = 111 string = amrood admin Character(unicode point) = 100