java.lang.StringBuffer.offsetByCodePoints()方法實例
java.lang.StringBuffer.offsetByCodePoints() 方法返回該序列中從給定的索引的codePointOffset代碼點偏移的索引。
聲明
以下是java.lang.StringBuffer.offsetByCodePoints()方法的聲明
public int offsetByCodePoints(int index, int codePointOffset)
參數
-
index -- 這是索引偏移量。
-
codePointOffset -- 這是偏移量的代碼點。
返回值
此方法返回該序列中的索引。
異常
-
NA
例子
下麵的例子顯示java.lang.StringBuffer.offsetByCodePoints()方法的使用。
package com.yiibai; import java.lang.*; public class StringBufferDemo { public static void main(String[] args) { StringBuffer buff = new StringBuffer("aawxyzaa"); System.out.println("buffer = " + buff); // returns the index within this sequence int retval = buff.offsetByCodePoints(1, 4); // prints the index System.out.println("index = " + retval); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
buffer = aawxyzaa index = 5