string类的public char charat
时间: 2023-04-26 07:04:05 浏览: 99
string类的public char charat是一个公共方法,用于返回字符串中指定索引位置的字符。该方法的参数是一个整数,表示要返回的字符在字符串中的位置。如果该位置超出了字符串的范围,则会抛出一个IndexOutOfBoundsException异常。该方法返回一个字符类型的值。
相关问题
public char charAt(int index)方法 String类的public char charAt(int index)方法可以得到当前字符串index位置上的一个字符。编写程序使用该方法得到一个字符串中的第一个和最后一个字符。
好的,下面是使用 `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,最后一个字符的下标为字符串长度减一。最后,我们将获取到的字符打印输出。
使用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()` 方法将得到的结果输出到控制台。
阅读全文