java 中charAt()怎么用的?
发布网友
发布时间:2022-05-02 16:08
我来回答
共5个回答
热心网友
时间:2022-06-20 19:46
charAt
public char charAt(int index)
返回指定索引处的 char 值。索引范围为从 0 到 length() - 1。序列的第一个 char 值在索引 0 处,第二个在索引 1 处,依此类推,这类似于数组索引。
如果索引指定的 char 值是代理项,则返回代理项值。
指定者:
接口 CharSequence 中的 charAt
参数:
index - char 值的索引。
返回:
此字符串指定索引处的 char 值。第一个 char 值在索引 0 处。
抛出:
IndexOutOfBoundsException - 如果 index 参数为负或小于此字符串的长度。
热心网友
时间:2022-06-20 19:46
比如"abcde"
调用chatAt(0) 这个0就是该字符串中某一字符的索引
返回a
调用chatAt(1) 返回b
热心网友
时间:2022-06-20 19:47
public class Test {
public static void main(String[] args) {
String s ="abc";
System.out.println(s.charAt(1));
}
}
the answer is:
b
热心网友
时间:2022-06-20 19:47
String.charAt(索引);
热心网友
时间:2022-06-20 19:48
JDK文档上介绍得很清楚