开发者社区> 问答> 正文

StringIndexOutOfBoundsException怎么解决?java报错

StringIndexOutOfBoundsException怎么解决?java报错

在编写java的样例代码时出现这种问题。这种情况应该如何解决和避免那?

public class StringCharAtExample {

    public staticvoid main(String[]args) {

        Stringstr = "Java Code Geeks!";

        System.out.println("Length:" + str.length());

        //The following statement throws an exception, because

        //the request index is invalid.

        char ch = str.charAt(50);

    }

}

原因是什么,为什么会发生异常,以及下面到底发生了什么。如果有人能帮忙?提前谢谢

展开
收起
爱吃鱼的程序员 2020-05-27 13:03:32 815 0
1 条回答
写回答
取消 提交回答
  • https://developer.aliyun.com/profile/5yerqm5bn5yqg?spm=a2c6h.12873639.0.0.6eae304abcjaIB

    楼主。看了你的代码信息,很明显根据提示可以知道 和数组索引一样,字符串索引从零开始。在索引字符串的时候,最后一个字符小于字符串的长度。 “StringIndexOutOfBoundsException”Java软件错误消息通常意味着索引正在尝试访问没有包含的字符。

    2020-05-27 13:34:15
    赞同 展开评论 打赏
问答排行榜
最热
最新

相关电子书

更多
Spring Cloud Alibaba - 重新定义 Java Cloud-Native 立即下载
The Reactive Cloud Native Arch 立即下载
JAVA开发手册1.5.0 立即下载