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