Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: Object and tied hash all at once?

by btrott (Parson)
on Jul 07, 2001 at 00:54 UTC ( [id://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?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (8)
As of 2024-04-18 10:13 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found