I have a List<String> object that contains country names. How can I sort this list alphabetically?
|
|
|||||||||||||||||
|
|
Assuming that those are Strings:
|
|||||||||
|
Solution with Collections.sortIf you are forced to use that List, or if your program has a structure like
then Thilos answer will be the best way to do it. If you combine it with the advice from Tom Hawtin - tackline, you get:
Solution with a TreeSetIf you are free to decide, and if your application might get more complex, then you might change your code to use a TreeSet instead. This kind of collection sorts your entries just when they are inserted. No need to call sort().
Side note on why I prefer the TreeSetThis has some subtle, but important advantages:
Using the right collection for the right task is a key to write short and bug free code. It's not as demonstrative in this case, because you just save one line. But I've stopped counting how often I see someone using a List when they want to ensure there are no duplictes, and then build that functionality themselves. Or even worse, using two Lists when you really need a Map. Don't get me wrong: Using Collections.sort is not an error or a flaw. But there are many cases when the TreeSet is much cleaner. |
|||||||||||||||
|
|
Use the two argument for of |
|||
|
|
|
You can create a new sorted copy (using guava):
or sort in place:
|
||||
|
|
|
You can try using a method that I made.
|
|||||||||
|