In Java, I have a Set, and I want to turn it into a sorted List. Is there a method in the java.util.Collections package that will do this for me?
|
|
||||
|
|
|
The answer provided by the OP is not the best. It is inefficient, as it creates a new Instead, use something like this:
Here's a usage example:
|
|||||||||||||||||
|
|
Sorted set:
or:
|
|||||||||||
|
… should do the trick however. Add flavour with Generics where applicable. |
|||||||||||||||
|
|
There's no single method to do that. Use this:
|
|||||
|
|
You can convert a set into an Here is the code:
|
|||||
|
|
Always safe to use either Comparator or Comparable interface to provide sorting implementation (if the object is not a String or Wrapper classes for primitive data types) . As an example for a comparator implementation to sort employees based on name
Comparator is useful when you need to have different sorting algorithm on same object S(say emp name, emp salary, etc) . Single mode sorting can be implemented by using Comparable interface in to the required object |
|||
|
|
protected by Community♦ Jul 27 '11 at 22:56
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.