java.lang.StringBuilder.offsetByCodePoints()方法實例
java.lang.StringBuilder.offsetByCodePoints() 方法返回該序列給定的索引,codePointOffset代碼點偏移中的索引。
聲明
以下是java.lang.StringBuilder.offsetByCodePoints()方法的聲明
public int offsetByCodePoints(int index, int codePointOffset)
參數
-
index -- 這是該索引為偏移量offset。
-
codePointOffset -- 這是偏移量的代碼點。
返回值
此方法返回該序列的索引。
異常
-
IndexOutOfBoundsException -- 如果索引為負或大於該序列的長度,或如果codePointOffset為正和start索引的子序列比codePointOffset碼點小,或者如果codePointOffset是為負和索引之前的子序列比codePointOffset碼的絕對值小。
例子
下麵的例子顯示java.lang.StringBuilder.offsetByCodePoints()方法的使用。
package com.yiibai; import java.lang.*; public class StringBuilderDemo { public static void main(String[] args) { StringBuilder str = new StringBuilder("abcdefg"); System.out.println("string = " + str); // returns the index within this sequence int retval = str.offsetByCodePoints(1, 4); // prints the index System.out.println("index = " + retval); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
string = abcdefg index = 5