HashSet Object clone() method in java code example
Example: HashSet Object clone() method in java
import java.util.HashSet;
public class HashSetObjectCloneMethodExample
{
public static void main(String[] args)
{
HashSet hs = new HashSet();
hs.add("Welcome");
hs.add("hello");
hs.add("world");
hs.add("core");
hs.add("java");
System.out.println("HashSet before using clone() method: " + hs);
// create new cloned HashSet
HashSet objClone = new HashSet();
// clone HashSet using clone() method
objClone = (HashSet)hs.clone();
// print new HashSet after cloning
System.out.println("HashSet after using clone() method: " + objClone);
}
}