Java / Set and its implementations
Java Collection:How to convert an Array to a Set?
One of the HashSet overloaded constructors accept ArrayList as an argument to create Set out of it. Passing the AsList method view of the array to the HashSet constructor, the Set can be created.
Set<Integer> mySet = new HashSet(Arrays.asList(1,4,3,4,4));
More Related questions...