概述
charAt方法:
java.lang.String.charAt()方法 返回 指定索引 处的 char值。索引范围 是从0 到length() - 1。
对于数组的索引,序列的第一个 char值 是在索引 为0,索引1,以此类推。。
这是String类中的关于这个方法的源代码:
public char charAt(int index) {
if ((index < 0) || (index >= value.length)) {
throw new StringIndexOutOfBoundsException(index);
}
return value[index];
}
参数index 这是该指数的char值。。
这个方法返回这个字符串的指定索引处的char值。第一个char值得索引为0.。
如果index参数为负或不小于该字符串的长度会报异常IndexOutOfBoundsException ,这是个越界异常
public class CharAt {
public static void main(String[] args) {
String s = "bejing welcome you"; System.out.println(s.charAt(1)); System.out.println(s.charAt(5)); System.out.println(s.charAt(15));
}
}
运行结果:
e
g
y
最后
以上就是可爱小蝴蝶为你收集整理的String的charAt方法的全部内容,希望文章能够帮你解决String的charAt方法所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复