Java中的Set的add()方法用于将特定元素添加到Set集合中。仅当集合中不存在指定的元素时,该函数才添加该元素;否则,如果集合中已存在该元素,则该函数返回False。

用法:

boolean add(E element)
Where, E is the type of element maintained
by this Set collection.

参数:参数element是此Set维护的元素的类型,它引用要添加到Set中的元素。

返回值:如果该元素不存在于集合中并且是新元素,则该函数返回True,否则,如果该元素已经存在于集合中则返回False。

以下程序说明了Java.util.Set.add()方法的用法:

程序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
Set s = new HashSet();
// 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: [Set, 4, Geeks, Welcome, To]
程序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
Set s = new HashSet();
// 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: [50, 20, 40, 10, 60, 30]