Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re: goto superclass method

by steves (Curate)
on Dec 22, 2004 at 19:02 UTC ( [id://416867]=note: print w/replies, xml ) Need Help??


in reply to goto superclass method

Since we're all feeling dirty, you could also do what you want by temporarily faking the symbol table out so there is, for an instant, no child class method. Playing with Perl symbol tables will put hair on your chest, but you may also go blind.

use strict; package Super; sub new { return bless {}, shift; } sub dostuff { print "In Parent dostuff -- caller: ", join('|', caller()), "\n"; } package Child; our @ISA = qw(Super); sub dostuff { my $self = @_[0]; print "In Child dostuff -- caller: ", join('|', caller()), "\n"; local *SAVE = *Child::dostuff; undef *Child::dostuff; my $method = $self->SUPER::can('dostuff'); *Child::dostuff = *SAVE; goto(&$method); } package main; my $x = Child->new(); $x->dostuff(); $x->dostuff();

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (4)
As of 2024-04-24 22:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found