可以使用字符串的charAt()方法来获取字符串的第一个字符。charAt()方法接受一个整数作为参数,表示要获取的字符的索引位置。由于字符串的索引是从0开始的,所以要获取第一个字符,可以传入参数值为0。以下是获取字符串第一个字符的示例代码:
charAt()
String str = "Hello World"; char firstChar = str.charAt(0); System.out.println(firstChar);
输出结果为:
H