in reply to bless array of hashes correct get method wrong
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:
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.my (@class, $count) = @_;
|
---|