Java StringBuffer int codePointAt(int index)方法与示例
StringBuffer类int codePoint(int索引)
包java.lang.StringBuffer.codePointAt(int index)中提供了此方法。
此方法用于返回方法中指定索引处的Unicode字符值(Unicode Codepoint)。
索引范围将从0到
length()
-1。此方法不会引发异常。
语法:
int codePointAt(int index){}
参数:
我们只能在StringBuffer的方法(即索引)中传递一个对象。
返回值:
此方法的返回类型为int,这意味着该方法在给定索引处返回字符的Unicode代码点,并且代码点值采用数字格式。
Java程序演示codePointAt(int index)方法的示例
import java.lang.StringBuffer;public class StringBufferClass {
public static void main(String[] args) {
StringBuffer sb = new StringBuffer("Java is a programming language : ");
//使用codePointAt(int index)它将返回Unicode代码点
//指定索引处字符的位置
//后显示结果
System.out.println("The result will be after implementing method codePointAt(2) is :" + sb.codePointAt(2));
sb = new StringBuffer("Java Support OOPS Concept");
//使用codePointAt(int index)它将返回Unicode代码点
//指定索引处字符的位置
//后显示结果
System.out.println("The result will be after implementing method codePointAt(5) is :" + sb.codePointAt(5));
}
}
输出结果
D:\Programs>javac StringBufferClass.javaD:\Programs>java StringBufferClass
The result will be after implementing method codePointAt(2) is :118
The result will be after implementing method codePointAt(5) is :83
以上是 Java StringBuffer int codePointAt(int index)方法与示例 的全部内容, 来源链接: utcz.com/z/338011.html