Hatalı indekse erişince fırlatılır.
constructor -long
Metodun içi şöyle. Parametre olarak int almıyor çünkü Java 16'dan itibaren bellek alanları büyüyor.
/**
* Constructs a new {@code IndexOutOfBoundsException} class with an
* argument indicating the illegal index.
*
* <p>The index is included in this exception's detail message. The
* exact presentation format of the detail message is unspecified.
*
* @param index the illegal index.
* @since 16
*/
public IndexOutOfBoundsException(long index) {
super("Index out of range: " + index);
}
Hiç yorum yok:
Yorum Gönder