Thursday, July 4, 2024
HomeLanguagesJavaLinkedHashSet size() method in Java

LinkedHashSet size() method in Java

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

Syntax:

Linked_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 LinkedHashSet.

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




// Java code to illustrate LinkedHashSet.size() method
import java.util.*;
import java.util.LinkedHashSet;
  
public class LinkedHashSetDemo {
    public static void main(String args[])
    {
        // Creating an empty LinkedHashSet
        LinkedHashSet<String> set = new LinkedHashSet<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 LinkedHashSet
        System.out.println("LinkedHashSet: " + set);
  
        // Displaying the size of the LinkedHashSet
        System.out.println("The size of the set is: "
                           + set.size());
    }
}


Output:

LinkedHashSet: [Welcome, To, Geeks, 4]
The size of the set is: 4
Nokonwaba Nkukhwana
Experience as a skilled Java developer and proven expertise in using tools and technical developments to drive improvements throughout a entire software development life cycle. I have extensive industry and full life cycle experience in a java based environment, along with exceptional analytical, design and problem solving capabilities combined with excellent communication skills and ability to work alongside teams to define and refine new functionality. Currently working in springboot projects(microservices). Considering the fact that change is good, I am always keen to new challenges and growth to sharpen my skills.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments