Metoda ArrayList get(index) w Javie z przykładami
The Dostawać() metoda Lista tablic w Javie służy do pobrania elementu o określonym indeksie z listy.
Składnia:
get(index)
Parametr: Indeks elementów do zwrócenia. Jest typu danych int.
Typ zwrotu: Element o określonym indeksie na podanej liście.
Wyjątek: Zgłasza wyjątek IndexOutOfBoundsException, jeśli indeks jest poza zakresem (index=size())
Notatka: Złożoność czasu : ArrayList jest jedną z implementacji List zbudowanych na górze tablicy. Dlatego get(index) jest zawsze operacją O(1) o stałym czasie.
Przykład:
Jawa
// Java Program to Demonstrate the working of> // get() method in ArrayList> > // Importing ArrayList class> import> java.util.ArrayList;> > // Main class> public> class> GFG {> > > // Main driver method> > public> static> void> main(String[] args)> > {> > // Creating an Empty Integer ArrayList> > ArrayList arr => new> ArrayList(> 4> );> > > // Using add() to initialize values> > // [10, 20, 30, 40]> > arr.add(> 10> );> > arr.add(> 20> );> > arr.add(> 30> );> > arr.add(> 40> );> > > // Printing elements of list> > System.out.println(> 'List: '> + arr);> > > // Getting element at index 2> > int> element = arr.get(> 2> );> > > // Displaying element at specified index> > // on console inside list> > System.out.println(> 'the element at index 2 is '> > + element);> > }> }> |
Wyjście
List: [10, 20, 30, 40] the element at index 2 is 30
Przykład 2 : Program demonstrujący błąd
Jawa
// Java Program to Demonstrate Error Generated> // while using get() method in ArrayList> > // Importing ArrayList class> import> java.util.ArrayList;> > // Main class> public> class> GFG {> > > // Main driver method> > public> static> void> main(String[] args)> > {> > // Creating an Empty Integer ArrayList> > ArrayList arr => new> ArrayList(> 4> );> > > // Using add() method to insert elements> > // and adding custom values> > arr.add(> 10> );> > arr.add(> 20> );> > arr.add(> 30> );> > arr.add(> 40> );> > > // Getting element at index 2> > int> element = arr.get(> 5> );> > > // Print all the elements of ArrayList> > System.out.println(> 'the element at index 2 is '> > + element);> > }> }> |
Wyjście :
Exception in thread 'main' java.lang.IndexOutOfBoundsException: Index: 5, Size: 4 at java.util.ArrayList.rangeCheck(ArrayList.java:657) at java.util.ArrayList.get(ArrayList.java:433) at GFG.main(GFG.java:22)