Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re^4: How to map function name to coderef?

by GrandFather (Saint)
on Jan 07, 2012 at 21:40 UTC ( [id://946797]=note: print w/replies, xml ) Need Help??


in reply to Re^3: How to map function name to coderef?
in thread How to map function name to coderef?

Actually Ikegami's 'solution' ("shut up and do what I tell you") almost certainly isn't what the OP is looking for, although it is one way of solving the problem that the OP asked about.

eyepopslikeamosquito really gave the best answer (in terms of likely best outcome for the OP) suggesting that the OP was asking the wrong question. Using symbolic references in Perl is almost never involved in a "best" solution.

And even in the narrow context of the question asked by the OP it's not at all clear that Ikegami's 'solution' solution is best. Consider:

use strict; use warnings; for my $fName ('foo', 'wibble') { my $doFoo = main->can($fName); print "Strictly: ", $doFoo ? $doFoo->() . "\n" : "Can't $fName\n"; my $cr = do {no strict; \&$fName}; print "Laxly: ", $cr ? $cr->() . "\n" : "Can't $fName\n"; } sub foo { return 1; }

which prints:

Strictly: 1 Laxly: 1 Strictly: Can't wibble Undefined subroutine &main::wibble called at noname2.pl line 13.

If the OP wants the code to die on a bad sub name then turning a blind eye to the symbolic reference is fine. If the OP wants to detect and handle a missing sub then using the can trick is a better solution. If the OP always knows what the name of the sub will be then there is no need for using a symbolic reference at all. But the OP doesn't give us enough information to make that determination.

There are few (no?) hard and fast rules about what constitutes a 'best' anything. You would do yourself a service by disabusing yourself of the notion that there is a one true best solution to almost anything.

True laziness is hard work

Replies are listed 'Best First'.
A reply falls below the community's threshold of quality. You may see it by logging in.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (6)
As of 2024-04-18 10:50 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found