Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Alternative ways to fully qualify subroutine names

by bobf (Monsignor)
on Feb 04, 2006 at 20:21 UTC ( [id://527987]=perlquestion: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my $class = 'Very::Long::Class::Name';
    $class->method;
    
  2. or download this
    my $pkg = 'Very::Long::Package::Name';
    $pkg::sub;
    
  3. or download this
    use strict;
    use warnings;
    ...
        my $func_str = $pkg . "::foo( 'param' );";
        eval $func_str; # [param]
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (4)
As of 2024-03-29 12:31 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found