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

Re: goto superclass method

by steves (Curate)
on Dec 22, 2004 at 19:02 UTC ( #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? | Other CB clients
Other Users?
Others exploiting the Monastery: (1)
As of 2023-03-31 03:39 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?
    Which type of climate do you prefer to live in?






    Results (74 votes). Check out past polls.

    Notices?