need an example on how to use a comparable class on a hashset to get an ascending order? Let say we have a hashset like: HashSet hs=new HashSet(); How can i get the hs to be in a ascending order??
|
feedback
|
|
Use a If you want to convert a
If the items you have itself already implements
See also: | ||||
|
feedback
|
|
Addendum: I would second @BalusC's point about implementing Addendum: @Stephen raises an important point, which favors @BalusC's suggestion of | |||||||
feedback
|
|
HashSets do not guarantee iteration order:
You probably need to choose a different datastructure if you want to be able to control the iteration order (or indeed have one at all!) | |||||||
feedback
|