vote up 2 vote down star

I’m trying to figure out how to iterate over an array of subroutine refs.

What’s wrong with this syntax?

use strict;
use warnings;

sub yell { print "Ahh!\n"; }
sub kick { print "Boot!\n"; }
sub scream { print "Eeek!\n"; }

my @routines = (\&yell, \&kick, \&scream);
foreach my $routine_ref (@routines) {
  my &routine = &{$routine_ref};
  &routine;
}

Thanks in advance!

flag

I don't know. What did the perl interpretor say? – Jon Ericson Jan 17 at 0:23
You're iterating over them just fine. It's dereferencing them that's the real question. :) – brian d foy Jan 17 at 3:10
@Jon: It said I had a syntax error, but didn't suggest how to correct it. @brian d foy: Good point, I'll modify the title. :-) – cdleary Jan 17 at 11:45

3 Answers

vote up 10 vote down check

In your foreach loop, the following is a syntax error:

my &routine;

Your variable $routine_ref already has a reference to the subroutine, so all you need to do at that point is call it:

for my $routine_ref (@routines) {
    &{$routine_ref};
}

As always with Perl, "There's More Than One Way to Do It." For example, if any of those subroutines took parameters, you could pass them inside parenthesis like this:

for my $routine_ref (@routines) {
  $routine_ref->();
}

Also note that I've used for instead of foreach, which is a best pratice put forth by Damian Conway in Perl Best Practices.

link|flag
I've always preferred the latter example, its less-ambiguous in behaviour to me. ( +1 ) – Kent Fredric Jan 17 at 1:43
You probably don't want to dereference it with just the &. Without the parens, that uses the current value of @_ as the implicit argument list, and that's usually never what you mean to do. – brian d foy Jan 17 at 3:09
Good point Brian. – j_random_hacker Jan 17 at 8:58
vote up 0 vote down

Try this:

use strict;
use warnings;

sub yell { print "Ahh!\n"; }
sub kick { print "Boot!\n"; }
sub scream { print "Eeek!\n"; }

my @routines = (\&yell, \&kick, \&scream);
foreach my $routine_ref (@routines) {
  &$routine_ref ();
}
link|flag
1  
&$routine_ref calls it. The parens do nothing. – Axeman Jan 17 at 2:47
vote up 4 vote down
foreach my $routine_ref (@routines) {
        $routine_ref->();
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.