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>();
   58   59   60   61   62   63   64   65   66   67   68