子字符串索引范围
法典:
public class Test {
public static void main(String[] args) {
String str = "University";
System.out.println(str.substring(4, 7));
}
}
输出: ers
我真的不明白子字符串方法是如何工作的。索引是否从 0 开始?如果我从0开始,则索引为4,但char为7,因此输出将为。e
i
ersi