当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Java.lang.Character.codePointBefore()用法及代码示例



描述

这个java.lang.Character.codePointBefore(char[ ] a, int index)返回字符数组的给定索引之前的代码点。

如果char数组中(index - 1)处的char值在低代理范围内,则(index - 2)不为负,并且char数组中(index - 2)处的char值在高代理范围内代理范围,则返回与此代理对对应的补充代码点。否则,返回 (index - 1) 处的字符值。

声明

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

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

参数

  • a- 字符数组

  • index- 应该返回的代码点后面的索引

返回值

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

异常

  • NullPointerException- 如果 a 为空。

  • IndexOutOfBoundsException- 如果索引参数小于 1 或大于字符数组的长度。

示例

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

package com.tutorialspoint;

import java.lang.*;

public class CharacterDemo {

   public static void main(String[] args) {

      // create a char array c and assign values
      char[] c = new char[] { 'a', 'b', 'c', 'd', 'e' };

      // create and assign value to index
      int index  = 2;

      // create an int res
      int res;

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

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

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

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

Unicode code point is 98

相关用法


注:本文由纯净天空筛选整理自 Java.lang.Character.codePointBefore() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。