Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: bless array of hashes correct get method wrong

by Thelonius (Priest)
on Apr 20, 2007 at 15:56 UTC ( [id://611191]=note: print w/replies, xml ) Need Help??


in reply to bless array of hashes correct get method wrong

The first error is complaining that $item[0] is not blessed, which, from the code you posted, is not. You apparently blessed the reference to the whole array, which is not the same as blessing the individual array elements. This is not a pedantic distinction, either. The individual elements are hash references and would normally be in a separate class.

Actually, it's not clear from your code whether you need the array to be an object, too. Do you have methods that use the array as a whole? It's perfectly fine to have an array of objects.

Also, this line would never work:

my (@class, $count) = @_;
because all the items in @_ will go to @class and $count will be left undefined. That's one reason you pass references to arrays instead of arrays.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (4)
As of 2024-04-25 07:54 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found