Is there any way to avoid the no strict 'refs' statement?

Yes, the symbol table is available as %::, but it's easier not to. Just limit the scope of no strict 'refs' to where you need it.

Is there any way to write a use statement to accept a variable without the eval technique Martin produced? It seems inelegant to me.

use if 1, $pkg;

or

my $file = $pkg; $file =~ s{::}{/}g; $file .= '.pm'; require $file; import $file;

The second has the advantage that you can avoid the import you don't want to perform anyway.

While the message is longer using diagnostics, nothing seems to be able to get rid of the run-time warning

You're doing something wrong if you're using defined(%hash).

You should be checking if the HASH slot of the symbol table entry is populated (*{"${pkg}::$_"}{HASH}).

Again, this may be related. If the code is run on Data::Dumper, almost all the scalars are the same as subs.

Scalars are almost(?) always created for globs when they are created.


In reply to Re: Introspection, strict, warnings and "defined" by ikegami
in thread Introspection, strict, warnings and "defined" by davies

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



  • 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, details, 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, summary, 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.