用java编写程序使用public char charAt(int index)方法得到一个字符串中的第一个和最后一个字符。
时间: 2023-12-10 22:37:03 浏览: 77
可以使用以下代码来实现:
```java
String str = "Hello World";
char firstChar = str.charAt(0); // 获取第一个字符 'H'
char lastChar = str.charAt(str.length()-1); // 获取最后一个字符 'd'
```
解释一下代码:首先定义了一个字符串 `str`,然后使用 `charAt` 方法获取第一个字符,由于字符串是从 0 开始索引的,所以第一个字符的索引是 0,即 `str.charAt(0)`。同理,获取最后一个字符需要知道字符串的长度,由于字符串长度是从 1 开始算的,所以最后一个字符的索引是 `str.length()-1`,即获取字符串长度减去 1 的位置上的字符,也就是 `str.charAt(str.length()-1)`。
相关问题
使用javapublic char charAt(int index)方法 String类的public char charAt(int index)方法可以得到当前字符串index位置上的一个字符。编写程序使用该方法得到一个字符串中的第一个和最后一个字符。
好的,以下是使用Java编写的程序,可以得到一个字符串中的第一个和最后一个字符:
```java
public class FirstAndLastChar {
public static void main(String[] args) {
String str = "Hello World";
char firstChar = str.charAt(0);
char lastChar = str.charAt(str.length() - 1);
System.out.println("The first character of the string is: " + firstChar);
System.out.println("The last character of the string is: " + lastChar);
}
}
```
在这个程序中,我们首先定义了一个字符串 `str`,然后使用 `charAt()` 方法得到了字符串的第一个和最后一个字符。其中,第一个字符的位置是0,最后一个字符的位置是字符串长度减1(因为字符串下标从0开始)。
最后,我们使用 `System.out.println()` 方法将得到的结果输出到控制台。
public char charAt(int index)方法 String类的public char charAt(int index)方法可以得到当前字符串index位置上的一个字符。编写程序使用该方法得到一个字符串中的第一个和最后一个字符。
好的,这个问题很简单,以下是获取字符串中第一个和最后一个字符的示例代码:
```java
public static void main(String[] args) {
String str = "Hello World!";
char firstChar = str.charAt(0);
char lastChar = str.charAt(str.length() - 1);
System.out.println("第一个字符是:" + firstChar);
System.out.println("最后一个字符是:" + lastChar);
}
```
运行结果:
```
第一个字符是:H
最后一个字符是:!
```
以上代码使用了`charAt()`方法来获取字符串中的第一个和最后一个字符,其中第一个字符的位置为0,最后一个字符的位置为字符串长度减1。注意,如果字符串为空或者索引越界,`charAt()`方法会抛出`StringIndexOutOfBoundsException`异常,需要进行异常处理。
阅读全文