Last Updated : 12 Jul, 2025
The
size()method of
SortedSet interfaceis used to get the size of the SortedSet or the number of elements present in the SortedSet.
Syntax:int size()Parameters:
This method does not takes any parameter.
Return Value:The method returns the
sizeor the number of elements present in the SortedSet.
Note: The size() method in
SortedSetis inherited from the
Set interfacein Java. Below program illustrate the java.util.Set.size() method:
Java
// Java code to illustrate Set.size() method
import java.util.*;
public class SetDemo {
public static void main(String args[])
{
// Creating an empty Set
SortedSet<String> set
= new TreeSet<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 Set
System.out.println("Set: " + set);
// Displaying the size of the Set
System.out.println(
"The size of the SortedSet is: "
+ set.size());
}
}
Output:
Set: [4, Geeks, To, Welcome] The size of the SortedSet is: 4Reference
:
https://docs.oracle.com/javase/7/docs/api/java/util/Set.html#size()RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4