Java StringBuffer int codePointBefore(int index)方法与示例

StringBuffer类int codePointBefore(int索引)

  • 包java.lang.StringBuffer.codePointBefore(int index)中提供了此方法。

  • 此方法用于在方法中的指定索引之前返回Unicode字符值(Unicode代码点)(即,在指定索引的一个位置之前返回Unicode代码点)。

  • 索引范围将从0到length()-1。

  • 此方法不会引发异常。

语法:

    int codePointBefore(int index){
    }

参数:

我们只能在StringBuffer的方法(即索引)中传递一个对象。

返回值:

此方法的返回类型为int,这意味着此方法在给定索引的一个位置之前返回字符的Unicode代码点,并且代码点值采用数字格式。

Java程序演示codePointBefore(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 codePointBefore(2) is :" + sb.codePointBefore(2));

        sb = new StringBuffer("Java Support OOPS Concept");

        //使用codePointBefore(int index)它将返回Unicode代码点 
        //指定索引处字符之前的字符

        //后显示结果

        System.out.println("The result will be after implementing method codePointBefore(5) is :" + sb.codePointBefore(5));
    }
}

输出结果

D:\Programs>javac StringBufferClass.java

D:\Programs>java StringBufferClass
The result will be after implementing method codePointBefore(2) is :97
The result will be after implementing method codePointBefore(5) is :32
猜你喜欢