El método add() de SortedSet en Java se usa para agregar un elemento específico a una colección Set . La función agrega el elemento solo si el elemento especificado aún no está presente en el conjunto; de lo contrario, la función devuelve False si el elemento ya está presente en el Conjunto.
Sintaxis:
boolean add(E element) Where E is the type of element maintained by this Set collection.
Parámetros: El elemento parámetro es del tipo de elemento que mantiene este Conjunto y se refiere al elemento que se agregará al Conjunto.
Valor devuelto: la función devuelve True si el elemento no está presente en el conjunto y es nuevo, de lo contrario, devuelve False si el elemento ya está presente en el conjunto.
Nota : este método de SortedSet se hereda de la interfaz Set en Java.
Los siguientes programas ilustran el uso del método Java.util.Set.add():
Programa 1 :
// Java code to illustrate add() method import java.io.*; import java.util.*; public class TreeSetDemo { public static void main(String args[]) { // Creating an empty Set SortedSet<String> s = new TreeSet<String>(); // Use add() method // to add elements into the Set s.add("Welcome"); s.add("To"); s.add("Geeks"); s.add("4"); s.add("Geeks"); s.add("Set"); // Displaying the Set System.out.println("Set: " + s); } }
Set: [4, Geeks, Set, To, Welcome]
Programa 2 :
// Java code to illustrate add() method import java.io.*; import java.util.*; public class TreeSetDemo { public static void main(String args[]) { // Creating an empty Set SortedSet<Integer> s = new TreeSet<Integer>(); // Use add() method // to add elements into the Set s.add(10); s.add(20); s.add(30); s.add(40); s.add(50); s.add(60); // Displaying the Set System.out.println("Set: " + s); } }
Set: [10, 20, 30, 40, 50, 60]
Referencia : https://docs.oracle.com/javase/7/docs/api/java/util/Set.html#add(E)