On Fri, 31 Jul 2009 14:35:56 -0700 (PDT),
"nooneinparticular314159@yahoo.com"
<nooneinparticular314159@yahoo.com> wrote:
I would like to use an object that behaves like a
hashmap (ie. put, get, with a key), but I'd like to be
able to index items in that object by more than one key.
Is there a way to do this?
Ie. if I had a name for the objects I'm adding as well
as a social security number, I'd like to be able to
return the object by either name or number depending on
need. Is there an object that does this, or do I have
to write it myself?
As an alternative you could use a database. Set up a
table with Name, SSN, etc. and build indexes for the
Name and SSN fields for fast retrieval.
representation.