Java Character codePointBefore()方法
java.lang.Character.codePointBefore(char[ ] a, int index, int start) 返回的字符数组,其中仅可用于数组元素与索引大于或等于start 的给定索引前面的代码点。
如果在char值(index- 1)在char数组是在低代理项范围,(index- 2)不大于启动以内,并在char值(index- 2)在char数组中的高代理范围内,则对应于此代理项对的增补代码点返回。否则,在(index- 1) 的char值返回。
1 语法
public static int codePointBefore(char[] a, int index, int start)
2 参数
a:char数组
index:下面返回代码点的索引
start:第一个数组元素的字符数组于的索引
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
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
热门文章
优秀文章