Tuesday 6 January 2015

Java : Collection Framework : TreeSet (Names Ascending Order)


Click here to watch in Youtube :
https://www.youtube.com/watch?v=HBaXNAM08gk&list=UUhwKlOVR041tngjerWxVccw

TreeSetExample.java
import java.util.TreeSet;

/*
 *  Example of TreeSet() Constructor.
 */
public class TreeSetExample
{
    public static void main( String[] args )
    {

        /*
         * Constructs a new, empty tree set, sorted according to the natural
         * ordering of its elements. All elements inserted into the set must
         * implement the Comparable interface.
         * 
         * Furthermore, all such elements must be mutually comparable:
         * e1.compareTo(e2) must not throw a ClassCastException for any elements
         * e1 and e2 in the set.
         * 
         * If the user attempts to add an element to the set that violates this
         * constraint (for example, the user attempts to add a string element to
         * a set whose elements are integers), the add call will throw a
         * ClassCastException.
         */
        TreeSet<String> treeSet = new TreeSet<String>();

        treeSet.add("Balu");
        treeSet.add("Carol");
        treeSet.add("Ajay");
        treeSet.add("David");
        treeSet.add("Emmy");

        System.out.println("treeSet : " + treeSet + "\n");

    }
}
Output
treeSet : [Ajay, Balu, Carol, David, Emmy]
To Download TreeSetDemoNamesAsc Project Click the below link
https://sites.google.com/site/javaee4321/java-collections/TreeSetDemoNamesAsc.zip?attredirects=0&d=1

See also:
  • All JavaEE Viedos Playlist
  • All JavaEE Viedos
  • Servlets Tutorial
  • All Design Patterns Links
  • JDBC Tutorial
  • No comments:

    Post a Comment