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


Java LinkedList descendingIterator()用法及代碼示例


java.util.LinkedList類的descendingIterator()方法用於按相反的順序返回對該LinkedList中的元素的迭代器。元素將按從最後(尾)到第一個(頭)的順序返回。

用法:

public Iterator descendingIterator()

返回值:此方法以相反的順序在此LinkedList中的元素上返回迭代器。


以下示例說明了descendingIterator()方法

示例1:

// Java program to demonstrate 
// descendingIterator() method 
// for String value 
  
import java.util.*; 
  
public class GFG1 { 
    public static void main(String[] argv) 
        throws Exception 
    { 
  
        try { 
  
            // creating object of TreeMap<Integer, String> 
            LinkedList<String> list = new LinkedList<String>(); 
  
            // add some elements to list 
            list.add("A"); 
            list.add("B"); 
            list.add("C"); 
  
            // print the linked list 
            System.out.println("LinkedList:" + list); 
  
            // set Iterator as descending 
            // using descendingIterator() method 
            Iterator x = list.descendingIterator(); 
  
            // print list with descending order 
            while (x.hasNext()) { 
                System.out.println("Value is : "
                                   + x.next()); 
            } 
        } 
  
        catch (NullPointerException e) { 
            System.out.println("Exception thrown : "
                               + e); 
        } 
    } 
}
輸出:
LinkedList:[A, B, C]
Value is : C
Value is : B
Value is : A

示例2:

// Java program to demonstrate 
// descendingIterator() method 
// for Integer value 
  
import java.util.*; 
  
public class GFG1 { 
    public static void main(String[] argv) 
        throws Exception 
    { 
  
        try { 
  
            // creating object of TreeMap<Integer, String> 
            LinkedList<Integer> 
                list = new LinkedList<Integer>(); 
  
            // add some elements to list 
            list.add(10); 
            list.add(20); 
            list.add(30); 
  
            // print the linked list 
            System.out.println("LinkedList:" + list); 
  
            // set Iterator as descending 
            // using descendingIterator() method 
            Iterator x = list.descendingIterator(); 
  
            // print list with descending order 
            while (x.hasNext()) { 
                System.out.println("Value is : "
                                   + x.next()); 
            } 
        } 
  
        catch (NullPointerException e) { 
            System.out.println("Exception thrown : " + e); 
        } 
    } 
}
輸出:
LinkedList:[10, 20, 30]
Value is : 30
Value is : 20
Value is : 10


相關用法


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