new TreeSet < E > ()
/**
*Output:
[A, B, C, D, E, F]
*/
import java.util.TreeSet;
public class MainClass {
public static void main(String args[]) {
TreeSet<String> ts = new TreeSet<String>();
ts.add("C");
ts.add("A");
ts.add("B");
ts.add("E");
ts.add("F");
ts.add("D");
System.out.println(ts);
}
}
Related examples in the same category