Home »
Java »
Java Programs
Java program to create a HashSet with string items
Java example to create a HashSet with string items.
Submitted by Nidhi, on May 08, 2022
Problem statement
In this program, we will create a set using the HashSet collection to store the name of cities and print the created collection.
Java program to create a HashSet with string items
The source code to create a HashSet with string items is given below. The given program is compiled and executed successfully.
// Java program to create a HashSet
// with string items
import java.util.*;
public class Main {
public static void main(String[] args) {
HashSet < String > cities = new HashSet();
cities.add("MUMBAI");
cities.add("NEW-DELHI");
cities.add("AGRA");
cities.add("INDORE");
System.out.println("Cities are: \n" + cities);
}
}
Output
Cities are:
[MUMBAI, AGRA, NEW-DELHI, INDORE]
Explanation
In the above program, we imported the "java.util.*" package to use the HashSet collection. Here, we created a public class Main that contains a main() method.
The main() method is the entry point for the program. And, we created a set to store the name of cities using the HashSet collection and printed the created collection.
Java HashSet Programs »