aspose file tools
The moose likes Java in General and the fly likes Collection - HashMap ? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Java in General
Reply Bookmark "Collection - HashMap ?" Watch "Collection - HashMap ?" New topic
Author

Collection - HashMap ?

kri shan
Ranch Hand

Joined: Apr 08, 2004
Posts: 1303
How to store all three arrays(String array, float array and int array) as HashMaps values ? (or) three different lists instead of arrays. Any other effiient way to return all 3 array values ?

Christophe Verré
Sheriff

Joined: Nov 24, 2005
Posts: 14685
    
  16

Why not making a class called Employee, with a name, a salary and an age ? You could then instanciate each employee from the resultset, put it in a List<Employee> and return it. I don't think you need to use HashMap here.


[My Blog]
All roads lead to JavaRanch
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Collection - HashMap ?
 
Similar Threads
MultiDimenaional Array sort
HashTable Problem
HashMap dilemma
Sort Arraylist by passing runtime parameter
can constructor throw exceptions?