Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re^2: Dynamic Package Name & Subroutine Call

by ikegami (Patriarch)
on Dec 16, 2012 at 13:55 UTC ( [id://1009062]=note: print w/replies, xml ) Need Help??


in reply to Re: Dynamic Package Name & Subroutine Call
in thread Dynamic Package Name & Subroutine Call

The following works with strict on:
(\&{"Test::${pkg}::hello"})->($pkg);
The same, but more readable:
my $sub = \&{"Test::${pkg}::hello"}; $sub->($pkg);

Then again, explicitly using no strict 'refs'; might be better a good thing.

That said, it looks like you have a method call (to which you're passing the wrong package name). If so, you should be using

("Test::".$pkg)->hello(...);

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1009062]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (8)
As of 2024-04-18 07:38 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found