Java.lang.Character.codePointBefore() 方法

描述

java.lang.Character.codePointBefore(char[ ] a, int index, int start) 返回 char 数组的给定索引之前的代码点,其中只有索引大于或等于的数组元素 可以使用to start。

如果char数组中(index - 1)处的char值在低代理范围内,(index - 2)不小于start,char数组中(index - 2)处的char值 在高代理范围内,则返回该代理对对应的补充码位。 否则,返回 (index - 1) 处的 char 值。


声明

以下是 java.lang.Character.codePointBefore() 方法的声明。

public static int codePointBefore(char[] a, int index, int start)

参数

  • a − 字符数组

  • index − 应返回的代码点之后的索引

  • start − char 数组中第一个数组元素的索引


返回值

此方法返回给定索引之前的 Unicode 代码点值。


异常

  • NullPointerException − 如果 a 为空。

  • IndexOutOfBoundsException - 如果 index 参数不大于 start 参数或大于 char 数组的长度,或者 start 参数为负数或不小于长度 的 char 数组。


示例

下面的例子展示了 lang.Character.codePointBefore() 方法的使用。

package com.tutorialspoint;

import java.lang.*;

public class CharacterDemo {

   public static void main(String[] args) {

      // create a char array c
      char[] c = new char[] { 'A', 'b', 'C', 'd'};

      // create and assign value to index, start
      int index  = 3, start = 1;

      // create an int res
      int res;

      // assign result of codePointBefore on c at index to res using start
      res = Character.codePointBefore(c, index, start);

      String str = "Unicode code point is " + res;

      // print res value
      System.out.println( str );
   }
}

让我们编译并运行上面的程序,这将产生下面的结果 −

Unicode code point is 67