Java StringBuffer offsetByCodePoints()方法
java.lang.StringBuffer.offsetByCodePoints()方法返回此序列中的index ,该索引通过codePointOffset代码点从给定索引偏移。
1 语法
public int offsetByCodePoints(int index, int codePointOffset)
2 参数
index : 这是要偏移的索引。
codePointOffset : 这是代码点中的偏移量。
3 返回值
此方法返回此序列中的索引。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* Java StringBuffer offsetByCodePoints()方法
*/
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
热门文章
优秀文章