public char charAt(int index)方法 String类的public char charAt(int index)方法可以得到当前字符串index位置上的一个字符。编写程序使用该方法得到一个字符串中的第一个和最后一个字符。
时间: 2024-02-09 20:13:40 浏览: 230
JS charAt() 的用法
好的,下面是使用 `charAt` 方法得到一个字符串中的第一个和最后一个字符的示例代码:
```java
public class Main {
public static void main(String[] args) {
String str = "Hello World";
char first = str.charAt(0);
char last = str.charAt(str.length() - 1);
System.out.println("第一个字符是:" + first);
System.out.println("最后一个字符是:" + last);
}
}
```
输出结果为:
```
第一个字符是:H
最后一个字符是:d
```
在代码中,我们先定义了一个字符串 `str`,然后使用 `charAt` 方法获取了字符串的第一个和最后一个字符。其中,第一个字符的下标为 0,最后一个字符的下标为字符串长度减一。最后,我们将获取到的字符打印输出。
阅读全文