The idea is to implement a class that gets a list of [arrays, Thread::Conveyor queues and other stuff] in a TIEHASH constructor,

use AbstractHash; 
tie(%DATA, 'AbstractHash', \@a1, \@a2, \$tcq);

What is a correct way to pass object references (like mentioned Thread::Conveyor objects) thus array references into constructor, so it can access the objects? Any cases when a passed object should be blessed?

link|improve this question

Did you try the code example you included? Did you get the desired results? – Ether Nov 3 '10 at 0:49
1  
And, what would an object be if it wasn't blessed? :) – Ether Nov 3 '10 at 0:50
1  
@Ether Just a damned value? – pst Nov 3 '10 at 4:36
1  
An unholy object ? – OMG_peanuts Nov 3 '10 at 11:17
lol @OMG_peanuts) should do &JohnTheBaptist{} that will traverse all the scopes. – kagali-san Nov 5 '10 at 15:34
feedback

1 Answer

up vote 1 down vote accepted

As far as I can tell, objects are not objects unless they're bless-ed.

That said, the constructor argument would simply be an arrayref of Thread::Conveyor objects:

my $data = AbstractHash->tie ( \@a1, \@a2, \$tcq );

where the constructor is defined in the AbstractHash package:

sub tie {

    my $class = shift;  # Implicit variable, don't forget

    my $data = {
                 someArray => +shift,
                 queues    => +shift,
                 someValue => +shift,
               };

    # $data starts life as a hashref, make it an 'AbstractHash'

    bless $data, $class; # $data is no longer a hashref
    return $data;        # AbstractHash object returned
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.