Java charAt() 方法
时间: 2023-12-18 14:02:48 浏览: 132
Java中的charAt()方法用于返回指定索引处的字符。它的语法如下:
```
public char charAt(int index)
```
其中,index表示要返回的字符的索引,索引从0开始计数。
例如,以下代码将返回字符串str中第三个字符(索引为2):
```
String str = "Hello world";
char c = str.charAt(2);
System.out.println(c); // 输出 'l'
```
相关问题
java charat
The charAt() method in Java is used to retrieve a specific character from a String. It takes an index as an argument and returns the character at that position. The index starts from 0, so the first character in the string is at position 0, the second character is at position 1, and so on.
Syntax:
```
char charAt(int index)
```
Example:
```
String str = "Hello World";
char ch = str.charAt(4);
System.out.println(ch); // Output: o
```
In this example, we have a string "Hello World" and we are using the charAt() method to retrieve the character at index position 4, which is 'o'. The character is then stored in a variable 'ch' and printed to the console.
Java charAt
Java中的字符串是由一系列字符组成的,每个字符在字符串中都有一个索引位置。charAt()方法用于获取字符串中指定索引位置的字符。
例如,下面的示例代码演示了如何使用charAt()方法获取字符串中第一个字符和第三个字符:
```
String str = "Hello World!";
char firstChar = str.charAt(0); // 获取第一个字符
char thirdChar = str.charAt(2); // 获取第三个字符
System.out.println("第一个字符是:" + firstChar);
System.out.println("第三个字符是:" + thirdChar);
```
输出结果为:
```
第一个字符是:H
第三个字符是:l
```
需要注意的是,字符串索引从0开始,因此第一个字符的索引为0,第二个字符的索引为1,依此类推。如果指定的索引超出了字符串的范围,charAt()方法将抛出一个StringIndexOutOfBoundsException异常。
阅读全文