![]() |
|
P is for Practical | |
PerlMonks |
Re: Complex Data Structuresby thelenm (Vicar) |
on Jun 18, 2002 at 17:00 UTC ( #175425=note: print w/replies, xml ) | Need Help?? |
When my data structures start getting too complex, I usually see if there's a way I can pull some of the data manipulation (and even the data itself) into a module. Many times I've come back to a program after a few months and said, "Well, it looks like a hash of arrays of hashes of hashes, but what the heck does that mean?" I find it helpful to use functions or object methods to manipulate those data so that I can say something like
instead of That way, I not only understand exactly what's going on, but I'm also less likely to screw myself up by manipulating the large structure differently in different places in the code. And I can change the actual implementation without changing the function/method calls. And as jeffa mentioned, Data::Dumper is a lifesaver. :-) -- Mike --
In Section
Meditations
|
|