大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。
Jetbrains全家桶1年46,售后保障稳定
先贴出测试代码:
public class TestStringIndex {
public static void main(String[] args) {
String test="woshifoucengjilaiguo";
System.out.println(test.length());
char i=test.charAt(21);
System.out.println(i);
}
}
20
Exception in thread "main" java.lang.StringIndexOutOfBoundsException: String index out of range: 21
at java.lang.String.charAt(String.java:686)
at com.wangyu.study.TestStringIndex.main(TestStringIndex.java:19)
异常分析:
数组test的长度为20 ,当我们去访问索引为21的,及第22个字符的时候会报StringIndexOutOfBoundsException,表示字符串索引越界
代码:
public class TestStringIndex {
public static void main(String[] args) {
String test="woshifoucengjilaiguo";
System.out.println(test.length());
//char i=test.charAt(21);
char i=test.charAt(-1);
System.out.println(i);
}
}
异常信息
20
Exception in thread "main" java.lang.StringIndexOutOfBoundsException: String index out of range: -1
at java.lang.String.charAt(String.java:686)
at com.wangyu.study.TestStringIndex.main(TestStringIndex.java:20)
异常分析:
程序尝试去获得索引为-1的字符,抛出字符串索引越界。
个人总结:
如果程序中出现StringIndexOutOfBoundsException,表示程序尝试获取大于等于字符串length和小于0的索引字符。
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/231304.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...