declare set javs code example
Example 1: how to initialize a set in java
Set<E> h = new HashSet<E>();
Example 2: 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