String.charAt()函数是String类的库函数,用于从字符串中获取/检索特定字符。其中,索引从0开始,到String.lenght-1结束。
例如,如果存在字符串“ Hello”,则其索引将从0开始到4结束。
注意:如果您尝试超出范围访问字符,则会生成异常StringIndexOutOfBoundsException。因此,在字符串中使用索引时要小心。
范例1:
在此示例中,存在由“ Hello world!”初始化的字符串。并且我们必须访问其第0和第7个字符。
public class Example1 { public static void main (String[] args) throws java.lang.Exception { String msg = "Hello world!"; System.out.println("Character at 0th index: "+ msg.charAt(0)); System.out.println("Character at 7th index: " + msg.charAt(7)); } }
输出结果
Character at 0th index: H Character at 7th index: o