Método ConcurrentSkipListSet descendingIterator() en Java

El método descendingIterator() de java.util.concurrent.ConcurrentSkipListSet es una función integrada en Java que se utiliza para devolver un iterador sobre los elementos de este conjunto en orden descendente .

Sintaxis:

ConcurrentSkipListSet.descendingIterator()

Valor devuelto: la función devuelve un iterador sobre los elementos de este conjunto en orden descendente.

Los siguientes programas ilustran el método ConcurrentSkipListSet.descendingIterator():

Programa 1:

// Java Program Demonstrate descendingIterator()
// method of ConcurrentSkipListSet 
  
import java.util.Iterator;
import java.util.concurrent.ConcurrentSkipListSet;
  
class ConcurrentSkipListSetIteratorExample1 {
    public static void main(String[] args)
    {
  
        // Initializing the set
        ConcurrentSkipListSet<String>
            set = new ConcurrentSkipListSet<String>();
  
        // Adding elements to this set
        set.add("Gfg");
        set.add("is");
        set.add("fun!!");
  
        // Returns an iterator over the elements
        Iterator<String> iterator = set.descendingIterator();
  
        // Printing the elements of the set
        while (iterator.hasNext())
            System.out.print(iterator.next() + " ");
    }
}
Producción:

is fun!! Gfg

Programa 2:

// Java Program Demonstrate descendingIterator()
// method of ConcurrentSkipListSet 
  
import java.util.Iterator;
import java.util.concurrent.ConcurrentSkipListSet;
  
class ConcurrentSkipListSetIteratorExample1 {
    public static void main(String[] args)
    {
  
        // Initializing the set
        ConcurrentSkipListSet<Integer>
            set = new ConcurrentSkipListSet<Integer>();
  
        // Adding elements to this set
        set.add(10);
        set.add(15);
        set.add(20);
        set.add(25);
  
        // Returns an iterator over the elements
        Iterator<Integer> iterator = set.descendingIterator();
  
        // Printing the elements of the set
        while (iterator.hasNext())
            System.out.print(iterator.next() + " ");
    }
}
Producción:

25 20 15 10

Referencia: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ConcurrentSkipListSet.html#descendingIterator–

Publicación traducida automáticamente

Artículo escrito por rupesh_rao y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *