A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.geeksforgeeks.org/java/treeset-add-method-in-java/ below:

TreeSet add() Method in Java

TreeSet add() Method in Java

Last Updated : 26 Nov, 2018

The Java.util.TreeSet.add() method in Java TreeSet is used to add a specific element into a TreeSet. The function adds the element only if the specified element is not already present in the set else the function return False if the element is not present in the TreeSet.

Syntax:
Tree_Set.add(Object element)
Parameters:

The parameter

element

is of the type of TreeSet and it refers to the element to be added to the Set.

Return Value:

The function returns True if the element is not present in the set and is new, else it returns False if the element is already present in the set. Below program illustrates the use of Java.util.TreeSet.add() method:

Java
// Java code to illustrate add()
import java.io.*;
import java.util.TreeSet;

public class TreeSetDemo {
    public static void main(String args[])
    {
        // Creating an empty TreeSet
        TreeSet<String> tree = new TreeSet<String>();

        // Use add() method to add elements into the Set
        tree.add("Welcome");
        tree.add("To");
        tree.add("Geeks");
        tree.add("4");
        tree.add("Geeks");
        tree.add("TreeSet");

        // Displaying the TreeSet
        System.out.println("TreeSet: " + tree);
    }
}
Output:
TreeSet: [4, Geeks, To, TreeSet, Welcome]


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