Метод ArrayList get(index) у Java з прикладами
The отримати() метод ArrayList в Java використовується для отримання елемента вказаного індексу в списку.
Синтаксис:
get(index)
Параметр: Індекс елементів, які потрібно повернути. Він має тип даних int.
Тип повернення: Елемент із вказаним індексом у заданому списку.
Виняток: Викидає IndexOutOfBoundsException, якщо індекс виходить за межі діапазону (index=size())
Примітка: Часова складність : ArrayList є однією з реалізацій List, побудованих на вершині масиву. Отже, get(індекс) завжди є операцією постійного часу O(1).
приклад:
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);> > }> }> |
Вихід
List: [10, 20, 30, 40] the element at index 2 is 30
Приклад 2 : Програма для демонстрації помилки
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);> > }> }> |
Вихід:
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)