Java SortedSet add()方法及示例
Java中SortedSet的 add() 方法是用来将一个特定的元素添加到Set集合中。只有当指定的元素还没有出现在集合中时,该函数才会添加该元素,否则,如果该元素已经出现在集合中,该函数会返回False。
语法
boolean add(E element)
Where **E** is the type of element maintained
by this Set collection.
参数: 参数element是这个Set所维护的元素类型,它指的是要添加到Set中的元素。
返回值: 如果元素不在集合中并且是新的,该函数返回True,如果元素已经在集合中存在,则返回False。
注意 :SortedSet的这个方法是继承自Java中的Set接口。
以下程序说明了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
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]
程序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]
参考资料 : https://docs.oracle.com/javase/7/docs/api/java/util/Set.html#add(E)