Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re: Object and tied hash all at once?

by btrott (Parson)
on Jul 07, 2001 at 00:54 UTC ( #94606=note: print w/replies, xml ) Need Help??


in reply to Object and tied hash all at once?

Yes, this is possible. Tie::SecureHash is an example of a class that does this.

In order to get the object and tied hash interface all at once, though, you have to be slightly tricky, and you need to create your object using the object constructor interface, not the tie interface:

sub new { my $class = shift; tie my %self, $class; bless \%self, $class; }
That returns a reference to the tied hash, which is also an object that is blessed into $class, which means that you can either use it as a tied hash, *or* call methods on it.

(NOTE: In the above example, the object is blessed into the tie class, but this is not required.)

Log In?
Username:
Password:

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

How do I use this? | Other CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (4)
As of 2023-03-27 23:13 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?
    Which type of climate do you prefer to live in?






    Results (66 votes). Check out past polls.

    Notices?