gpt4 book ai didi

java - 为什么我在第二行收到 StringIndexOutOfBoundsException?

转载 作者:行者123 更新时间:2023-12-01 16:36:47 27 4
gpt4 key购买 nike

为什么下面的 Java 代码片段在第三行代码中抛出 StringIndexOutOfBoundsException?

String str = "1234567890";
String sub1 = str.substring(0, 3);
String sub2 = str.substring(4, 1);

我原本期望上述代码的结果是 sub1 包含“123”而 sub2 包含“5”,但我得到了上面提到的异常。第一个子字符串调用对正在操作的字符串有副作用吗?

最佳答案

因为beginIndex大于endIndex

请参阅doc :

抛出:IndexOutOfBoundsException - 如果 beginIndex 为负数,或者 endIndex 大于此 String 对象的长度,或者 beginIndex 大于 大于 endIndex。

关于java - 为什么我在第二行收到 StringIndexOutOfBoundsException?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8177396/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com