當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java List 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<Integer> arr = new ArrayList<Integer>(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<Integer> arr = new ArrayList<Integer>(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://docs.oracle.com/javase/7/docs/api/java/util/List.html#get(int)



相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 List get() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。