Método LinkedHashSet clear() en Java con ejemplos

El método clear() de la clase java.util.LinkedHashSet se usa para eliminar todos los elementos de este conjunto. El conjunto estará vacío después de que regrese esta llamada.

Sintaxis:

public void clear()

Valor devuelto: este método no devuelve nada.

A continuación se muestran los ejemplos para ilustrar el método clear() .

Ejemplo 1:

// Java program to demonstrate
// clear() method
// for Integer value
  
import java.util.*;
  
public class GFG1 {
    public static void main(String[] argv) throws Exception
    {
        try {
  
            // Create the object of LinkedHashSet<Integer>
            LinkedHashSet<Integer>
                linkset = new LinkedHashSet<Integer>();
  
            // populate hash set
            linkset.add(10);
            linkset.add(20);
            linkset.add(30);
  
            // print the LinkedHashSet
            System.out.println("LinkedHashSet: "
                               + linkset);
  
            // clear set values
            // using clear() method
            linkset.clear();
  
            // print the LinkedHashSet
            System.out.println("LinkedHashSet after "
                               + "use of clear() method: "
                               + linkset);
        }
  
        catch (NullPointerException e) {
  
            System.out.println("Exception thrown : " + e);
        }
    }
}
Producción:

LinkedHashSet: [10, 20, 30]
LinkedHashSet after use of clear() method: []

Ejemplo 2:

// Java program to demonstrate
// clear() method
// for String value
  
import java.util.*;
  
public class GFG1 {
    public static void main(String[] argv) throws Exception
    {
        try {
  
            // Create the object of LinkedHashSet<Integer>
            LinkedHashSet<String>
                linkset = new LinkedHashSet<String>();
  
            // populate hash set
            linkset.add("A");
            linkset.add("B");
            linkset.add("C");
  
            // print the LinkedHashSet
            System.out.println("LinkedHashSet: "
                               + linkset);
  
            // clear set values
            // using clear() method
            linkset.clear();
  
            // print the LinkedHashSet
            System.out.println("LinkedHashSet after "
                               + "use of clear() method: "
                               + linkset);
        }
  
        catch (NullPointerException e) {
  
            System.out.println("Exception thrown : " + e);
        }
    }
}
Producción:

LinkedHashSet: [A, B, C]
LinkedHashSet after use of clear() method: []

Publicación traducida automáticamente

Artículo escrito por RohitPrasad3 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 *