I'm attempting to call a nested recursive perl function, but I can't tack the correct syntax.
Question: What is the correct syntax to perform a recursive call for a nested function (if nested functions should be recursively called at all)?
Answer: Refer to suggested pseudocode in the accepted answer.
Here is a pseudocode snippet:
use Scalar::Util;
sub outerfunction {
my $innerfunction = sub {
# Do something
innerfunction();
# Do other things
};
Scalar::Util::weaken($innerfunction);
&$innerfunction(@_);
};
I've tried to invoke innerfunction as the following (with the consequential error messages):
innerfunction
Undefined subroutine &main::innerfunction
&innerfunction
Undefined subroutine &main::innerfunction
&$innerfunction
Global symbol "$innerfunction" requires explicit package name
I've also tried to declare the innerfunction as local, but receive the following:
Global symbol "$innerfunction" requires explicit package name
I don't have much experience with interpreted languages, so any incidental commentary related to memory/stack leakage/ corruption or other dangers with the above pseudocode (other than system limits on recursion) would be greatly appreciated as well.
Thanks! perl v5.10.1 running on Linux 2.6.34.7-61.fc13.x86_64
weakenon the reference? – TLP Mar 8 '12 at 20:12weakenis necessary when creating a recursive closure. If the closure holds a strong reference to itself, then it can never be garbage collected (until the interpreter shuts down). It may not be a serious leak (that depends on how oftenouterfunctionis called), but it will be a memory leak. – cjm Mar 8 '12 at 20:56my $foo; sub foo { $foo } $foo = \&foo;does suffer from the same problem (i.e.$fooand&foowon't get freed until global destruction), but 1) you'd never do that, and 2)foodoesn't go out of scope until global destruction anyway so it's moot. – ikegami Mar 8 '12 at 23:20