Java 字符串 codePointAt() 方法
示例
返回字符串中第一个字符的 Unicode 值("H" 的 Unicode 值为 72)
String myStr = "Hello";
int result = myStr.codePointAt(0);
System.out.println(result);
定义和用法
The codePointAt()
方法返回字符串中指定索引处的字符的 Unicode 值。
第一个字符的索引为 0,第二个字符的索引为 1,依此类推。
语法
public int codePointAt(int index)
参数值
参数 | 描述 |
---|---|
index | 一个 int 值,表示要返回的字符的索引 |
技术细节
返回 | 一个 int 值,表示索引处的字符的 Unicode 值 |
---|---|
抛出 | IndexOutOfBoundsException - 如果索引为负数或不小于指定字符串的长度 |
Java 版本 | 1.5 |
❮ 字符串方法