Remove all elements from Java LinkedHashSet in Java
Description
The following code shows how to remove all elements from Java LinkedHashSet.
Example
// w w w .java 2s . c o m
import java.util.LinkedHashSet;
public class Main {
public static void main(String[] args) {
LinkedHashSet<Integer> lhashSet = new LinkedHashSet<Integer>();
lhashSet.add(new Integer("1"));
lhashSet.add(new Integer("2"));
lhashSet.add(new Integer("3"));
System.out.println(lhashSet);
lhashSet.clear();
System.out.println(lhashSet);
System.out.println(lhashSet.isEmpty());
}
}
The code above generates the following result.