📜  用示例列出Java中的 get() 方法

📅  最后修改于: 2022-05-13 01:54:42.582000             🧑  作者: Mango

用示例列出Java中的 get() 方法

Java中 List 接口的get()方法用于获取此列表中给定特定索引处的元素。

句法 :

E get(int index)

Where, E is the type of element maintained
by this List container.

参数:此方法接受一个整数类型的参数索引,它表示此列表中要返回的元素的索引。

返回值:它返回给定列表中指定索引处的元素。

错误和异常:如果索引超出范围 (index=size()),此方法将引发IndexOutOfBoundsException

下面的程序说明了 get() 方法:

程序 1:

// Java code to demonstrate the working of
// get() method in List
  
import java.util.*;
  
public class GFG {
    public static void main(String[] args)
    {
        // creating an Empty Integer List
        List 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);
  
        System.out.println("List: " + arr);
  
        // element at index 2
        int element = arr.get(2);
  
        System.out.println("The element at index 2 is " + element);
    }
}
输出:
List: [10, 20, 30, 40]
The element at index 2 is 30

程序 2 :演示错误的程序。

// Java code to demonstrate the error of
// get() method in List
  
import java.util.*;
  
public class GFG {
    public static void main(String[] args)
    {
        // creating an Empty Integer List
        List 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);
  
        try {
            // Trying to access element at index 8
            // which will throw an Exception
            int element = arr.get(8);
        }
        catch (Exception e) {
            System.out.println(e);
        }
    }
}
输出:
java.lang.IndexOutOfBoundsException: Index: 8, Size: 4

参考:https: Java/util/List.html#get(int)