Java examples for Collection Framework:TreeSet
Create TreeSet and add value to it
import java.util.TreeSet;; public class Main { public static void main(String[] args) { TreeSet tSet = new TreeSet(); //ww w . j a v a2 s. com tSet.add(new Integer("1")); tSet.add(new Integer("2")); tSet.add(new Integer("3")); System.out.println("TreeSet contains.." + tSet); } }