create a set in java code example
Example 1: java create a set with values
Set<String> set = new HashSet<>(Arrays.asList("a", "b", "c"));
Example 2: java how to make set
HashSet<String> set = new HashSet();
set.add("One");
set.add("Two");
set.remove("One");
set.clear();
Example 3: set in java
SET: Can only store unique values,
And does not maintain order
- HashSet can have null, order is not guaranteed
- LinkedHashSet can have null and keeps the order
- TreeSet sorts the order and don't accept null