Java Collection Sorting issues

Source: Internet
Author: User
Tags comparable


3 Kinds of sorting

TreeSet <t>: Sort: You must implement the java.lang.Comparable interface in the class <T> to which the object belongs, and override the Tocompare () method.


List <t>+ Collection Tool class:

    • Collections.sort (list): You need to implement the comparable interface and override the Tocompare () method.
    • Collections.sort (list,new Comparator () {@Override public int compare (object o01, Object o02) ...}); Object classes do not implement interfaces.











2 Methods of reverse output

Collections Tool Reverse Output element:
    1. Collections.sort (list, Collections.reverseorder ()); Descending arrangement;
    2. comparator<person> Desccomparator = Collections. Reverseorder (Asccomparator); //Sort objects in ascending order to produce a reversed (descending) Sort object



some other common API functions are:


collections.reverse (list); reverse sort.
string Property ordering can be used in the following ways
public int compareTo (Cat o) {return this.getname (). CompareTo (O.getname ());}
Comparetto ()

The string property ordering takes Collections.sort (list, string.case_insensitive_order);

Java Collection Sorting issues

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.