Java Character codePointBefore()方法

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

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

1 语法

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

2 参数

a:字符数组

index:下面返回代码点的索引

3 返回值

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

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java Character codePointBefore()方法
 */
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

 

热门文章

优秀文章