in reply to bless array of hashes correct get method wrong

I think you're letting yourself get distracted by all the nifty options that perl allows. If you're just learning about OOP in perl, you should keep things as simple as possible. Stick to using hashref based objects to begin with, which would imply that your aref should be just one field of data inside that object. If it seems helpful, each of the hashrefs inside that array could also be objects of a different class. And while most likely you'll want to just have the usual "get_*" and "set_*" methods that work on that aref as a whole, if you like you can have some "fancy accessors" that do things like push a hash ref onto the array, or pop one off of it.

(Oh, and one more hint: ignore whatever you hear about "Inside-Out Objects" for a little while longer. There's still room for debate about what the right way is to implement those, and most OOP perl code you see will be hash based).