Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re: An irrational coding choice found

by GrandFather (Saint)
on Mar 18, 2012 at 22:38 UTC ( [id://960337]=note: print w/replies, xml ) Need Help??


in reply to An irrational coding choice found

It's not HoH versus AoH so much as arrays versus hashes. There are places where arrays make sense and places where hashes make sense. Sometimes the choice is hard because neither is quite right, but most times asking yourself a few simple questions will show the way:

  • The data naturally comes as key/value pairs: hash
  • The data naturally comes as a series of values: array
  • I need to keep the elements in their original order: array
  • Key information must be unique: hash

It is easy, although not as common as you might guess, to have incompatible answers to the questions, but very often the choice of appropriate type is pretty obvious. Note though that making the wrong choice often leads to very bad code as you try and work around the issues created.

True laziness is hard work

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://960337]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (2)
As of 2024-04-25 20:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found