Page 63 - Abstract Class, Interface & Struktur Data
P. 63
Hashset
• A HashSet is a collection of items where every item is
unique, and it is found in the java.util package:
import java.util.HashSet; // Import the HashSet class
HashSet<String> cars = new HashSet<String>();