Saturday, December 13, 2025
HomeLanguagesJavaHashSet size() Method in Java

HashSet size() Method in Java

The Java.util.HashSet.size() method is used to get the size of the HashSet or the number of elements present in the HashSet.

Syntax:

Hash_Set.size()

Parameters: This method does not takes any parameter.

Return Value: The method returns the size or the number of elements present in the HashSet.

Below program illustrate the Java.util.HashSet.size() method:




// Java code to illustrate HashSet.size() method
import java.util.*;
import java.util.HashSet;
  
public class HashSetDemo {
    public static void main(String args[])
    {
        // Creating an empty HashSet
        HashSet<String> set = new HashSet<String>();
  
        // Use add() method to add elements into the Set
        set.add("Welcome");
        set.add("To");
        set.add("Geeks");
        set.add("4");
        set.add("Geeks");
  
        // Displaying the HashSet
        System.out.println("HashSet: " + set);
  
        // Displaying the size of the HashSet
        System.out.println("The size of the set is: " + set.size());
    }
}


Output:

HashSet: [4, Geeks, Welcome, To]
The size of the set is: 4
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32446 POSTS0 COMMENTS
Milvus
105 POSTS0 COMMENTS
Nango Kala
6814 POSTS0 COMMENTS
Nicole Veronica
11952 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12030 POSTS0 COMMENTS
Shaida Kate Naidoo
6949 POSTS0 COMMENTS
Ted Musemwa
7200 POSTS0 COMMENTS
Thapelo Manthata
6898 POSTS0 COMMENTS
Umr Jansen
6882 POSTS0 COMMENTS