Two comments:
Data::Dumper may not be the best way to Dump closures, I find Data::Dump::Streamer a lot more useful:
foo.pl
#!/usr/bin/perl
use strict;
use warnings;
use Data::Dump::Streamer; ##!!
use Foo;
my $help = 'Please display this message';
my $foo = Foo->new;
my $subref = $foo->subref;
foreach my $pos (@{$subref->{order}}){
my $sub = $subref->{dispatch}->{$pos};
Dump ($sub); ###!!
}
Outputs:
my ($self);
$self = bless( {}, 'Foo' );
$CODE1 = sub {
package Foo;
use warnings;
use strict 'refs';
$self->suba;
};
my ($self);
$self = bless( {}, 'Foo' );
$CODE1 = sub {
package Foo;
use warnings;
use strict 'refs';
$self->subb;
};
This seems clearer to me than the output you got from Data::Dumper. And maybe you would catch the error that rhesa points out.
And since you already broke the encapsulation of your object, why don't you return the plain function instead of a method?:
package Foo;
use strict; use warnings;
sub new { bless {}, shift; }
sub suba
{
# my $self = shift;
my $param = shift || '';
print "Message is: $param\n";
}
sub subb { return; }
sub subref
{
my $self = shift;
return {
order => ['A', 'B'],
dispatch => {
A => \&suba, ##!
B => \&subb, ##!
}
};
}
1;
Outputs (as expected)
POS: A
$CODE1 = sub {
package Foo;
use warnings;
use strict 'refs';
my $param = shift @_ || '';
print "Message is: $param\n";
};
Message is: Please display this message
POS: B
$CODE1 = sub {
package Foo;
use warnings;
use strict 'refs';
return;
};
citromatik
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|