logo

ArrayList get(index) Metoda în Java cu exemple

The obține() Metodă de ArrayList în Java este folosit pentru a obține elementul unui index specificat în listă.

Sintaxă:

bool to string java
get(index)>

Parametru: Indexul elementelor de returnat. Este de tipul de date int.



Tip returnare: Elementul de la indexul specificat în lista dată.

Excepție: Aruncă IndexOutOfBoundsException dacă indexul este în afara intervalului (index=size())

Notă: Complexitatea timpului : ArrayList este una dintre implementările Listă care au construit un top o matrice. Prin urmare, get(index) este întotdeauna o operație în timp constant O(1).

Exemplu:

Java




// 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);> >}> }>

>

>

Ieșire

List: [10, 20, 30, 40] the element at index 2 is 30>

Exemplul 2 : Program pentru a demonstra eroarea

Java


constructor în java



// 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);> >}> }>

>

>

Ieșire:

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)>