📜  java string get ith char - Java (1)

📅  最后修改于: 2023-12-03 15:31:32.107000             🧑  作者: Mango

Java String Get ith Char - Java

在Java中,可以通过 charAt() 方法获取字符串对象中的特定字符。 charAt() 方法需要一个整数参数 i,以指定要检索的字符的索引位置。

下面是获取字符串对象中第 i 个字符的示例代码:

String str = "Hello World";
char ch = str.charAt(i);

其中 i 是指定要返回的字符的索引位置。 索引位置从 0 开始,因此字符串中的第一个字符的索引位置为 0

如果索引位置超出了字符串的长度范围,则会抛出一个 IndexOutOfBoundsException 异常:

String str = "Hello World";
try {
    char ch = str.charAt(100); // Throws IndexOutOfBoundsException
} catch (IndexOutOfBoundsException ex) {
    System.out.println("Invalid index position specified.");
}

因此,在使用 charAt() 方法时,请确保指定的索引位置在字符串的有效范围内。