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


Java AbstractSequentialList ListIterator()用法及代碼示例


AbstractSequentialList listIterator():Java中的方法用於獲取此列表上的listIterator。它返回此列表中元素的列表迭代器(按適當順序)。

用法:

public abstract ListIterator listIterator(int index)

參數:此方法采用參數索引,該參數索引是要從列表迭代器返回的第一個元素的索引(通過調用next方法)


返回:此方法返回此列表中的元素的列表迭代器(按適當順序)。

異常:如果索引超出範圍(索引size()),則此方法引發IndexOutOfBoundsException。

下麵是說明ListIterator()的代碼:

程序1:

// Java program to demonstrate 
// add() method 
  
import java.util.*; 
  
public class GfG { 
  
    public static void main(String[] args) 
    { 
        // Creating an instance of the AbstractSequentialList 
        AbstractSequentialList<Integer> absl = new LinkedList<>(); 
  
        // adding elements to absl 
        absl.add(5); 
        absl.add(6); 
        absl.add(7); 
        absl.add(2, 8); 
        absl.add(2, 7); 
        absl.add(1, 9); 
        absl.add(4, 10); 
  
        // Getting ListIterator 
        ListIterator<Integer> Itr = absl.listIterator(2); 
  
        // Traversing elements 
        while (Itr.hasNext()) { 
            System.out.print(Itr.next() + " "); 
        } 
    } 
}
輸出:
6 7 10 8 7

程序2:演示IndexOutOfBoundException

// Java code to show IndexOutofBoundException 
  
import java.util.*; 
  
public class GfG { 
  
    public static void main(String[] args) 
    { 
  
        // Creating an instance of the AbstractSequentialList 
        AbstractSequentialList<Integer> absl = new LinkedList<>(); 
  
        // adding elements to absl 
        absl.add(5); 
        absl.add(6); 
        absl.add(7); 
        absl.add(2, 8); 
        absl.add(2, 7); 
        absl.add(1, 9); 
        absl.add(4, 10); 
  
        // Printing the list 
        System.out.println(absl); 
  
        try { 
            // showing IndexOutOfBoundsException 
            // Getting ListIterator 
            ListIterator<Integer> Itr = absl.listIterator(15); 
  
            // Traversing elements 
            while (Itr.hasNext()) { 
                System.out.print(Itr.next() + " "); 
            } 
        } 
        catch (Exception e) { 
            System.out.println("Exception:" + e); 
        } 
    } 
}
輸出:
[5, 9, 6, 7, 10, 8, 7]
Exception:java.lang.IndexOutOfBoundsException:Index:15, Size:7


相關用法


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