Java 字符串 codePointBefore() 方法
示例
返回字符串中第一个字符的 Unicode 值(“H” 的 Unicode 值为 72)
String myStr = "Hello";
int result = myStr.codePointBefore(1);
System.out.println(result);
定义和用法
The codePointBefore()
方法返回字符串中指定索引之前字符的 Unicode 值。
第一个字符的索引为 1,第二个字符的索引为 2,依此类推。
注意: 值 0 会生成错误,因为这是一个负数(超出范围)。
语法
public int codePointBefore(int index)
参数值
参数 | 描述 |
---|---|
index | 一个 int 值,表示应该返回的 Unicode 之后的索引 |
技术细节
返回值 | 一个 int 值,表示指定索引之前的 Unicode 值 |
---|---|
抛出 | IndexOutOfBoundsException - 如果索引为负数或不小于指定字符串的长度 |
Java 版本 | 1.5 |
❮ 字符串方法