in reply to Would you use 'goto' here?
Ugh! I forgot to explain this version of goto. From the docs:
The "goto-&NAME" form is quite different from the other forms of "goto". In fact, it isn't a goto in the normal sense at all, and doesn't have the stigma associated with other gotos. Instead, it substitutes a call to the named subroutine for the currently running subroutine. This is used by "AUTOLOAD" subroutines that wish to load another subroutine and then pretend that the other subroutine had been called in the first place (except that any modifications to "@_" in the current subroutine are propagated to the other subroutine.) After the "goto", not even "caller" will be able to tell that this routine was called first.
In other words, it's like the current subroutine doesn't exist. As an editor, I could have edited my parent node to include this, but that seemed rather abusive of that right :(
Cheers,
Ovid
Join the Perlmonks Setiathome Group or just click on the the link and check out our stats.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: (Ovid) (2): Would you use 'goto' here?
by dmmiller2k (Chaplain) on Dec 06, 2001 at 20:11 UTC |