gpt4 book ai didi

java - 为什么这不是 StringIndexOutOfBounds?

转载 作者:搜寻专家 更新时间:2023-11-01 03:30:50 25 4
gpt4 key购买 nike

public String delDel(String str) {
if (str.length() < 4)
return str;
if (str.substring(1,4).equals("del"))
return str.substring(0, 1) + str.substring(4, str.length());
else
return str;
}

如果我运行delDel("adel"),它返回a,但是adel的长度是4,这意味着最后一个字符串索引是3,为什么不是str.substring(4, str.length( ) 越界?

最佳答案

下面的代码是java中String类的substring方法的实现:

    public String substring(int beginIndex, int endIndex) {
if (beginIndex < 0) {
throw new StringIndexOutOfBoundsException(beginIndex);
}
if (endIndex > value.length) {
throw new StringIndexOutOfBoundsException(endIndex);
}
int subLen = endIndex - beginIndex;
if (subLen < 0) {
throw new StringIndexOutOfBoundsException(subLen);
}
return ((beginIndex == 0) && (endIndex == value.length)) ? this
: new String(value, beginIndex, subLen);
}

可以看出,仅检查 beginIndex 不小于零,而 endIndex 仅检查字符串的“value.length”是否大于它。然后,如果此条件通过,则请求的子字符串将由以下代码创建:

public String(char value[], int offset, int count) {
if (offset < 0) {
throw new StringIndexOutOfBoundsException(offset);
}
if (count <= 0) {
if (count < 0) {
throw new StringIndexOutOfBoundsException(count);
}
if (offset <= value.length) {
this.value = "".value;
return;
}
}
// Note: offset or count might be near -1>>>1.
if (offset > value.length - count) {
throw new StringIndexOutOfBoundsException(offset + count);
}
this.value = Arrays.copyOfRange(value, offset, offset+count);
}

在您的情况下,因为计数会变成零 (4-4),所以 'this.value = "".value;'

关于java - 为什么这不是 StringIndexOutOfBounds?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56880575/

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