In Perl if I want to have a multi-layered hash, I would write:

$hash_ref->{'key1'}->{'key2'}='value';

Where 'key1' might be a person's name, 'key2' might be "Savings Account" (vs. "Checking Account") and 'value' might be the amount of money in the account.

Is there an equivalent to this in Java, i.e. access values via hash references? What's the syntax like for this? Any examples or other resource references would be greatly appreciated. Thanks!

link|improve this question

feedback

5 Answers

up vote 4 down vote accepted

You can have a Map<Map<..>>, where you'll be able to call map.get("key1").get("key2")

But note that Java is a statically-typed, object-oriented language. So you'd better creat classes: Person, SavingsAccount, and a Person has a field private SavingsAccount savingsAcount. Then you'll be able to do a compile-time safe: map.get("John").getSavingsAccount()

link|improve this answer
Thanks for your response. I think the nested map way of doing it is most similar to what I'm used to in Perl. Is it less efficient than using the object approach? – DarthestVader Jan 16 at 23:54
If you want to quickly retrieve then map is the fastest while the object approach might need you to use a list which again is a touch expensive if you have to loop through large data. – Abhi Jan 17 at 0:11
1  
It's less efficient, and goes against the philosophy of the language. Your code will be considered amateurish if you do that in Java. It will also be unreadable and hard to maintain, and your colleagues will want to shoot you :-) Learn the Java way of doing things, or keep using Perl. – JB Nizet Jan 17 at 0:11
feedback

In Java, we use objects. We would have a Person object, with a name property of type String, and a savingsAccount of type Account. This Account object would have a value property, of type BigDecimal.

Java is an OO language. It's not Perl. You should use Java idioms in Java, and not Perl idioms.

link|improve this answer
the other day I saw the code of some of our former Perl programmers: LinkedHashMap<Long, Map<String, Map<Long, List<Long>>>> – Bozho Jan 16 at 22:56
Thanks JB Nizet! – DarthestVader Jan 17 at 0:08
feedback

You could create a class that represents the key with proper implementation for equals and hashCode methods:

link|improve this answer
feedback

I am not sure why the question was down-voted but to answer your question, in Java you can use nested Maps to achieve the same.

link|improve this answer
feedback

For instance, you can have a

HashMap<String, HashMap<String, BigDecimal>>. 

I would not call it OOD, but you can.

It would probably be a bit more readable if you had a class for representing Person, a class to represent PersonalAccounts, which has Account instances as attributes, one for each account type (I assume those would be very few, otherwise a list would be better).

Then a single

HashMap<Person, PersonalAccounts> 

is enough, if you want to use an HashMap.

Actually you don't even need a map if an instance of PersonalAccounts is an attribute of a Person.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.