Completion requirements
This chapter accompanies the previous one. Read it for even more info on Strings.
7. Two-parameter substring()
Answer:
Only one value is legitimate: 0 .
Two-parameter substring()
substring()
substring( int from, int to ) | Create a new object that contains the characters of the method's string from index from to index to-1 . | Throws an IndexOutOfBoundsException if from is negative or if from is larger than to . |
There is a second version of substring()
. Remember those tricky rules about the second version of the method:
- If
from
is negative, anIndexOutOfBoundsException
is thrown. - If
from
is larger thanto
, anIndexOutOfBoundsException
is thrown. - If
to
is larger than the length, anIndexOutOfBoundsException
is thrown. - If
from
equalsto
, and both are within range, then an empty string is returned.
These rules make sense. If something can't be done, Java throws an exception.
Question 7:
What do the following statements create?