发布网友 发布时间:2022-05-27 17:06
共1个回答
热心网友 时间:2023-11-06 05:40
是一个函数。
1 public String substring(int beginIndex, int endIndex)。
{ 2 if (beginIndex < 0)。
{ 3 throw new StringIndexOutOfBoundsException(beginIndex);。
4 }
5 if (endIndex > count)。
{ 6 throw new StringIndexOutOfBoundsException(endIndex)。
7 }
8 if (beginIndex > endIndex)。
{ 9 throw new StringIndexOutOfBoundsException(endIndex - beginIndex)。
10 }
11 return ((beginIndex == 0) && (endIndex == count)) ? this 。
12 new String(offset + beginIndex, endIndex - beginIndex, value)。
13 }