What are the use cases in which we should use ArrayIndexOutOfBoundsException
and `IndexOutOfBoundsException one over another?
相关问题
- Delete Messages from a Topic in Apache Kafka
- Jackson Deserialization not calling deserialize on
- How to maintain order of key-value in DataFrame sa
- StackExchange API - Deserialize Date in JSON Respo
- Difference between Types.INTEGER and Types.NULL in
IndexOutOfBoundsException
is the super class ofArrayIndexOutOfBoundsException
(thrown when accessing invalid index in a array) andStringIndexOutOfBoundsException
(thrown when accessing invalid index in a String).Instances of the base class
IndexOutOfBoundsException
itself are thrown when accessing invalid indices of Lists.The Javadoc of some methods that throw
IndexOutOfBoundsException
or its sub-classes contains the base class. For example,String.charAt
is documented to be throwingIndexOutOfBoundsException
when it actually throws the sub-classStringIndexOutOfBoundsException
.ArrayIndexOutOfBoundsException indicates the illegal index in its message.
Basically, if you go out of bounds for an array or String, you will get the ArrayIndexOutOfBoundsException or the StringIndexOutOfBoundsException. For a LinkedList though or some other Collection, you will get the more general IndexOutOfBoundsException.
IndexOutOfBoundsException :Thrown to indicate that an index of some sort (such as to an array, to a string, or to a vector) is out of range.
ArrayIndexOutOfBoundsException
,StringIndexOutOfBoundsException
are two classes, which have implementedIndexOutOfBoundsException
.ArrayIndexOutOfBoundsException: Thrown to indicate that an array has been accessed with an illegal index. The index is either negative or greater than or equal to the size of the array.
StringIndexOutOfBoundsException:Thrown by String methods to indicate that an index is either negative or greater than the size of the string. For some methods such as the charAt method, this exception also is thrown when the index is equal to the size of the string.