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

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

You cannot use use in this context because it is wrapped in an implicit BEGIN block (see BEGIN, UNITCHECK, CHECK, INIT and END), and thus gets evaluated at compile time and before you could initialize the value of your variable. The usual work around here is to use a string eval, a la:

my $module_name = 'Foo'; eval "use $module_name;1;" or die "Couldn't use $module_name: $@";
Of course, this has security implications, since you are evaluating arbitrary code, depending on where your value comes from.

But it complains that I'm calling "new" on an unblessed reference when I do my $object = $module->new(); on the next line.

This should not be happening. The following code works for me (assuming an OO-module Foo in your path):

#!/usr/bin/perl use strict; use warnings; use Data::Dumper; my $module = 'Foo'; my $module_path = "$module.pm"; $module_path =~ s|::|/|g; require $module_path; print Dumper $module->new;

Note the s|::|/|g to allow non-root modules. Also note that by requiring you are bypassing the import mechanism.


#11929 First ask yourself `How would I do this without a computer?' Then have the computer do it the same way.


In reply to Re: Variable as module name? by kennethk
in thread Variable as module name? by Cody Fendant

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (7)
As of 2024-04-18 11:47 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found