Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

SortedMap class

Status
Not open for further replies.

sensory21

Programmer
Jan 27, 2004
79
0
0
GB
Hi,

Has anyone used SortedMap class? and have some info about it please? (except from java sun)

Cheers
vero
 
Yeah, the SortedMap class is just an interface. You will need to pick an implementation class such as TreeMap. TreeMap is a red-black tree implementation that is good for sorting objects that will later need to be displayed in order. If they don't need to be displayed in order consider using a HashMap.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top