作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在java中,我有一个名为string的字符串,其值为“A”。
即 String string = "A";
它的大小是1,我们知道字符串中的字符是0索引的。它们表示为 Char 数组。那么,为什么 string.substring(1);
不给我一个异常(exception)?
最佳答案
如果你看一下substring(int beginIndex)
的代码:
public String substring(int beginIndex) {
if (beginIndex < 0) {
throw new StringIndexOutOfBoundsException(beginIndex);
}
int subLen = value.length - beginIndex;
if (subLen < 0) {
throw new StringIndexOutOfBoundsException(subLen);
}
return (beginIndex == 0) ? this : new String(value, beginIndex, subLen);
}
没有条件指定如果长度为 1 并且索引为 1,则应抛出异常。事实上,返回一个新的空字符串。
System.out.println("A".substring(1).equals(""));
返回 true
因为 方法。
关于java - 在Java中,我有一个名为字符串 "A"(大小1)的字符串。为什么 string.substring(1) 没有给出异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30116245/
我是一名优秀的程序员,十分优秀!