java.lang.String.offsetByCodePoints() 方法返回這個字串,是從給定的索引codePointOffset碼點偏移的索引。
以下是java.lang.String.offsetByCodePoints()方法的宣告
public int offsetByCodePoints(int index, int codePointOffset)
index -- 這是索引被抵消。
codePointOffset -- 這是偏移量的程式碼點。
此方法返回此字串的索引。
IndexOutOfBoundsException -- 如果指數為負或更大則此字串的長度,或如果codePointOffset為正和開始索引的子具有比codePointOffset碼點較少,或者如果codePointOffset為負和索引之前的子串具有比codePointOffset碼的絕對值要小。
下面的例子顯示java.lang.String.offsetByCodePoints()方法的使用。
package com.yiibai; import java.lang.*; public class StringDemo { public static void main(String[] args) { String str = "aacdefaa"; System.out.println("string = " + str); // returns the index within this String int retval = str.offsetByCodePoints(2, 4); // prints the index System.out.println("index = " + retval); } }
讓我們來編譯和執行上面的程式,這將產生以下結果:
string = aacdefaa index = 6