home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _7484f50c4d03dbe5f6b99f437b222665 < prev    next >
Text File  |  2000-03-23  |  49KB  |  920 lines

  1. <HTML>
  2. <HEAD>
  3. <TITLE>perlfaq7 - Perl Language Issues</TITLE>
  4. <LINK REL="stylesheet" HREF="../../Active.css" TYPE="text/css">
  5. <LINK REV="made" HREF="mailto:">
  6. </HEAD>
  7.  
  8. <BODY>
  9. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  10. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  11. <STRONG><P CLASS=block> perlfaq7 - Perl Language Issues</P></STRONG>
  12. </TD></TR>
  13. </TABLE>
  14.  
  15. <A NAME="__index__"></A>
  16. <!-- INDEX BEGIN -->
  17.  
  18. <UL>
  19.  
  20.     <LI><A HREF="#name">NAME</A></LI>
  21.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  22.     <UL>
  23.  
  24.         <LI><A HREF="#can i get a bnf/yacc/re for the perl language">Can I get a BNF/yacc/RE for the Perl language?</A></LI>
  25.         <LI><A HREF="#what are all these $@%&* punctuation signs, and how do i know when to use them">What are all these $@%&* punctuation signs, and how do I know when to use them?</A></LI>
  26.         <LI><A HREF="#do i always/never have to quote my strings or use semicolons and commas">Do I always/never have to quote my strings or use semicolons and commas?</A></LI>
  27.         <LI><A HREF="#how do i skip some return values">How do I skip some return values?</A></LI>
  28.         <LI><A HREF="#how do i temporarily block warnings">How do I temporarily block warnings?</A></LI>
  29.         <LI><A HREF="#what's an extension">What's an extension?</A></LI>
  30.         <LI><A HREF="#why do perl operators have different precedence than c operators">Why do Perl operators have different precedence than C operators?</A></LI>
  31.         <LI><A HREF="#how do i declare/create a structure">How do I declare/create a structure?</A></LI>
  32.         <LI><A HREF="#how do i create a module">How do I create a module?</A></LI>
  33.         <LI><A HREF="#how do i create a class">How do I create a class?</A></LI>
  34.         <LI><A HREF="#how can i tell if a variable is tainted">How can I tell if a variable is tainted?</A></LI>
  35.         <LI><A HREF="#what's a closure">What's a closure?</A></LI>
  36.         <LI><A HREF="#what is variable suicide and how can i prevent it">What is variable suicide and how can I prevent it?</A></LI>
  37.         <LI><A HREF="#how can i pass/return a {function, filehandle, array, hash, method, regex}">How can I pass/return a {Function, FileHandle, Array, Hash, Method, Regex}?</A></LI>
  38.         <LI><A HREF="#how do i create a static variable">How do I create a static variable?</A></LI>
  39.         <LI><A HREF="#what's the difference between dynamic and lexical (static) scoping between local() and my()">What's the difference between dynamic and lexical (static) scoping?  Between <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local()</CODE></A> and my()?</A></LI>
  40.         <LI><A HREF="#how can i access a dynamic variable while a similarly named lexical is in scope">How can I access a dynamic variable while a similarly named lexical is in scope?</A></LI>
  41.         <LI><A HREF="#what's the difference between deep and shallow binding">What's the difference between deep and shallow binding?</A></LI>
  42.         <LI><A HREF="#why doesn't my($foo) = <file>; work right">Why doesn't ``my($foo) = <FILE>;'' work right?</A></LI>
  43.         <LI><A HREF="#how do i redefine a builtin function, operator, or method">How do I redefine a builtin function, operator, or method?</A></LI>
  44.         <LI><A HREF="#what's the difference between calling a function as &foo and foo()">What's the difference between calling a function as &foo and foo()?</A></LI>
  45.         <LI><A HREF="#how do i create a switch or case statement">How do I create a switch or case statement?</A></LI>
  46.         <LI><A HREF="#how can i catch accesses to undefined variables/functions/methods">How can I catch accesses to undefined variables/functions/methods?</A></LI>
  47.         <LI><A HREF="#why can't a method included in this same file be found">Why can't a method included in this same file be found?</A></LI>
  48.         <LI><A HREF="#how can i find out my current package">How can I find out my current package?</A></LI>
  49.         <LI><A HREF="#how can i comment out a large block of perl code">How can I comment out a large block of perl code?</A></LI>
  50.         <LI><A HREF="#how do i clear a package">How do I clear a package?</A></LI>
  51.         <LI><A HREF="#how can i use a variable as a variable name">How can I use a variable as a variable name?</A></LI>
  52.     </UL>
  53.  
  54.     <LI><A HREF="#author and copyright">AUTHOR AND COPYRIGHT</A></LI>
  55. </UL>
  56. <!-- INDEX END -->
  57.  
  58. <HR>
  59. <P>
  60. <H1><A NAME="name">NAME</A></H1>
  61. <P>perlfaq7 - Perl Language Issues ($Revision: 1.28 $, $Date: 1999/05/23 20:36:18 $)</P>
  62. <P>
  63. <HR>
  64. <H1><A NAME="description">DESCRIPTION</A></H1>
  65. <P>This section deals with general Perl language issues that don't
  66. clearly fit into any of the other sections.</P>
  67. <P>
  68. <H2><A NAME="can i get a bnf/yacc/re for the perl language">Can I get a BNF/yacc/RE for the Perl language?</A></H2>
  69. <P>There is no BNF, but you can paw your way through the yacc grammar in
  70. perly.y in the source distribution if you're particularly brave.  The
  71. grammar relies on very smart tokenizing code, so be prepared to
  72. venture into toke.c as well.</P>
  73. <P>In the words of Chaim Frenkel: ``Perl's grammar can not be reduced to BNF.
  74. The work of parsing perl is distributed between yacc, the lexer, smoke
  75. and mirrors.''</P>
  76. <P>
  77. <H2><A NAME="what are all these $@%&* punctuation signs, and how do i know when to use them">What are all these $@%&* punctuation signs, and how do I know when to use them?</A></H2>
  78. <P>They are type specifiers, as detailed in <A HREF="../../lib/Pod/perldata.html">the perldata manpage</A>:</P>
  79. <PRE>
  80.     $ for scalar values (number, string or reference)
  81.     @ for arrays
  82.     % for hashes (associative arrays)
  83.     & for subroutines (aka functions, procedures, methods)
  84.     * for all types of that symbol name.  In version 4 you used them like
  85.       pointers, but in modern perls you can just use references.</PRE>
  86. <P>A couple of others that you're likely to encounter that aren't
  87. really type specifiers are:</P>
  88. <PRE>
  89.     <> are used for inputting a record from a filehandle.
  90.     \  takes a reference to something.</PRE>
  91. <P>Note that <FILE> is <EM>neither</EM> the type specifier for files
  92. nor the name of the handle.  It is the <CODE><></CODE> operator applied
  93. to the handle FILE.  It reads one line (well, record - see
  94. <A HREF="../../lib/Pod/perlvar.html#$/">$/ in the perlvar manpage</A>) from the handle FILE in scalar context, or <EM>all</EM> lines
  95. in list context.  When performing open, close, or any other operation
  96. besides <CODE><></CODE> on files, or even talking about the handle, do
  97. <EM>not</EM> use the brackets.  These are correct: <A HREF="../../lib/Pod/perlfunc.html#item_eof"><CODE>eof(FH)</CODE></A>, <A HREF="../../lib/Pod/perlfunc.html#item_seek"><CODE>seek(FH, 0,
  98. 2)</CODE></A> and ``copying from STDIN to FILE''.</P>
  99. <P>
  100. <H2><A NAME="do i always/never have to quote my strings or use semicolons and commas">Do I always/never have to quote my strings or use semicolons and commas?</A></H2>
  101. <P>Normally, a bareword doesn't need to be quoted, but in most cases
  102. probably should be (and must be under <CODE>use strict</CODE>).  But a hash key
  103. consisting of a simple word (that isn't the name of a defined
  104. subroutine) and the left-hand operand to the <CODE>=></CODE> operator both
  105. count as though they were quoted:</P>
  106. <PRE>
  107.     This                    is like this
  108.     ------------            ---------------
  109.     $foo{line}              $foo{"line"}
  110.     bar => stuff            "bar" => stuff</PRE>
  111. <P>The final semicolon in a block is optional, as is the final comma in a
  112. list.  Good style (see <A HREF="../../lib/Pod/perlstyle.html">the perlstyle manpage</A>) says to put them in except for
  113. one-liners:</P>
  114. <PRE>
  115.     if ($whoops) { exit 1 }
  116.     @nums = (1, 2, 3);</PRE>
  117. <PRE>
  118.     if ($whoops) {
  119.         exit 1;
  120.     }
  121.     @lines = (
  122.         "There Beren came from mountains cold",
  123.         "And lost he wandered under leaves",
  124.     );</PRE>
  125. <P>
  126. <H2><A NAME="how do i skip some return values">How do I skip some return values?</A></H2>
  127. <P>One way is to treat the return values as a list and index into it:</P>
  128. <PRE>
  129.         $dir = (getpwnam($user))[7];</PRE>
  130. <P>Another way is to use undef as an element on the left-hand-side:</P>
  131. <PRE>
  132.     ($dev, $ino, undef, undef, $uid, $gid) = stat($file);</PRE>
  133. <P>
  134. <H2><A NAME="how do i temporarily block warnings">How do I temporarily block warnings?</A></H2>
  135. <P>If you are running Perl 5.6.0 or better, the <CODE>use warnings</CODE> pragma
  136. allows fine control of what warning are produced.
  137. See <A HREF="../../lib/Pod/perllexwarn.html">the perllexwarn manpage</A> for more details.</P>
  138. <PRE>
  139.     {
  140.         no warnings;          # temporarily turn off warnings
  141.         $a = $b + $c;         # I know these might be undef
  142.     }</PRE>
  143. <P>If you have an older version of Perl, the <CODE>$^W</CODE> variable (documented
  144. in <A HREF="../../lib/Pod/perlvar.html">the perlvar manpage</A>) controls runtime warnings for a block:</P>
  145. <PRE>
  146.     {
  147.         local $^W = 0;        # temporarily turn off warnings
  148.         $a = $b + $c;         # I know these might be undef
  149.     }</PRE>
  150. <P>Note that like all the punctuation variables, you cannot currently
  151. use <A HREF="../../lib/Pod/perlfunc.html#item_my"><CODE>my()</CODE></A> on <CODE>$^W</CODE>, only local().</P>
  152. <P>
  153. <H2><A NAME="what's an extension">What's an extension?</A></H2>
  154. <P>A way of calling compiled C code from Perl.  Reading <A HREF="../../lib/Pod/perlxstut.html">the perlxstut manpage</A>
  155. is a good place to learn more about extensions.</P>
  156. <P>
  157. <H2><A NAME="why do perl operators have different precedence than c operators">Why do Perl operators have different precedence than C operators?</A></H2>
  158. <P>Actually, they don't.  All C operators that Perl copies have the same
  159. precedence in Perl as they do in C.  The problem is with operators that C
  160. doesn't have, especially functions that give a list context to everything
  161. on their right, eg print, chmod, exec, and so on.  Such functions are
  162. called ``list operators'' and appear as such in the precedence table in
  163. <A HREF="../../lib/Pod/perlop.html">the perlop manpage</A>.</P>
  164. <P>A common mistake is to write:</P>
  165. <PRE>
  166.     unlink $file || die "snafu";</PRE>
  167. <P>This gets interpreted as:</P>
  168. <PRE>
  169.     unlink ($file || die "snafu");</PRE>
  170. <P>To avoid this problem, either put in extra parentheses or use the
  171. super low precedence <CODE>or</CODE> operator:</P>
  172. <PRE>
  173.     (unlink $file) || die "snafu";
  174.     unlink $file or die "snafu";</PRE>
  175. <P>The ``English'' operators (<CODE>and</CODE>, <CODE>or</CODE>, <CODE>xor</CODE>, and <CODE>not</CODE>)
  176. deliberately have precedence lower than that of list operators for
  177. just such situations as the one above.</P>
  178. <P>Another operator with surprising precedence is exponentiation.  It
  179. binds more tightly even than unary minus, making <CODE>-2**2</CODE> product a
  180. negative not a positive four.  It is also right-associating, meaning
  181. that <CODE>2**3**2</CODE> is two raised to the ninth power, not eight squared.</P>
  182. <P>Although it has the same precedence as in C, Perl's <CODE>?:</CODE> operator
  183. produces an lvalue.  This assigns $x to either $a or $b, depending
  184. on the trueness of $maybe:</P>
  185. <PRE>
  186.     ($maybe ? $a : $b) = $x;</PRE>
  187. <P>
  188. <H2><A NAME="how do i declare/create a structure">How do I declare/create a structure?</A></H2>
  189. <P>In general, you don't ``declare'' a structure.  Just use a (probably
  190. anonymous) hash reference.  See <A HREF="../../lib/Pod/perlref.html">the perlref manpage</A> and <A HREF="../../lib/Pod/perldsc.html">the perldsc manpage</A> for details.
  191. Here's an example:</P>
  192. <PRE>
  193.     $person = {};                   # new anonymous hash
  194.     $person->{AGE}  = 24;           # set field AGE to 24
  195.     $person->{NAME} = "Nat";        # set field NAME to "Nat"</PRE>
  196. <P>If you're looking for something a bit more rigorous, try <A HREF="../../lib/Pod/perltoot.html">the perltoot manpage</A>.</P>
  197. <P>
  198. <H2><A NAME="how do i create a module">How do I create a module?</A></H2>
  199. <P>A module is a package that lives in a file of the same name.  For
  200. example, the Hello::There module would live in Hello/There.pm.  For
  201. details, read <A HREF="../../lib/Pod/perlmod.html">the perlmod manpage</A>.  You'll also find <A HREF="../../lib/Exporter.html">the Exporter manpage</A> helpful.  If
  202. you're writing a C or mixed-language module with both C and Perl, then
  203. you should study <A HREF="../../lib/Pod/perlxstut.html">the perlxstut manpage</A>.</P>
  204. <P>Here's a convenient template you might wish you use when starting your
  205. own module.  Make sure to change the names appropriately.</P>
  206. <PRE>
  207.     package Some::Module;  # assumes Some/Module.pm</PRE>
  208. <PRE>
  209.     use strict;
  210.     use warnings;</PRE>
  211. <PRE>
  212.     BEGIN {
  213.         use Exporter   ();
  214.         our ($VERSION, @ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS);</PRE>
  215. <PRE>
  216.         ## set the version for version checking; uncomment to use
  217.         ## $VERSION     = 1.00;</PRE>
  218. <PRE>
  219.         # if using RCS/CVS, this next line may be preferred,
  220.         # but beware two-digit versions.
  221.         $VERSION = do{my@r=q$Revision: 1.28 $=~/\d+/g;sprintf '%d.'.'%02d'x$#r,@r};</PRE>
  222. <PRE>
  223.         @ISA         = qw(Exporter);
  224.         @EXPORT      = qw(&func1 &func2 &func3);
  225.         %EXPORT_TAGS = ( );     # eg: TAG => [ qw!name1 name2! ],</PRE>
  226. <PRE>
  227.         # your exported package globals go here,
  228.         # as well as any optionally exported functions
  229.         @EXPORT_OK   = qw($Var1 %Hashit);
  230.     }
  231.     our @EXPORT_OK;</PRE>
  232. <PRE>
  233.     # non-exported package globals go here
  234.     our @more;
  235.     our $stuff;</PRE>
  236. <PRE>
  237.     # initialize package globals, first exported ones
  238.     $Var1   = '';
  239.     %Hashit = ();</PRE>
  240. <PRE>
  241.     # then the others (which are still accessible as $Some::Module::stuff)
  242.     $stuff  = '';
  243.     @more   = ();</PRE>
  244. <PRE>
  245.     # all file-scoped lexicals must be created before
  246.     # the functions below that use them.</PRE>
  247. <PRE>
  248.     # file-private lexicals go here
  249.     my $priv_var    = '';
  250.     my %secret_hash = ();</PRE>
  251. <PRE>
  252.     # here's a file-private function as a closure,
  253.     # callable as &$priv_func;  it cannot be prototyped.
  254.     my $priv_func = sub {
  255.         # stuff goes here.
  256.     };</PRE>
  257. <PRE>
  258.     # make all your functions, whether exported or not;
  259.     # remember to put something interesting in the {} stubs
  260.     sub func1      {}    # no prototype
  261.     sub func2()    {}    # proto'd void
  262.     sub func3($$)  {}    # proto'd to 2 scalars</PRE>
  263. <PRE>
  264.     # this one isn't exported, but could be called!
  265.     sub func4(\%)  {}    # proto'd to 1 hash ref</PRE>
  266. <PRE>
  267.     END { }       # module clean-up code here (global destructor)</PRE>
  268. <PRE>
  269.     1;            # modules must return true</PRE>
  270. <P>The h2xs program will create stubs for all the important stuff for you:</P>
  271. <PRE>
  272.   % h2xs -XA -n My::Module</PRE>
  273. <P>
  274. <H2><A NAME="how do i create a class">How do I create a class?</A></H2>
  275. <P>See <A HREF="../../lib/Pod/perltoot.html">the perltoot manpage</A> for an introduction to classes and objects, as well as
  276. <A HREF="../../lib/Pod/perlobj.html">the perlobj manpage</A> and <A HREF="../../lib/Pod/perlbot.html">the perlbot manpage</A>.</P>
  277. <P>
  278. <H2><A NAME="how can i tell if a variable is tainted">How can I tell if a variable is tainted?</A></H2>
  279. <P>See <A HREF="../../lib/Pod/perlsec.html#laundering and detecting tainted data">Laundering and Detecting Tainted Data in the perlsec manpage</A>.  Here's an
  280. example (which doesn't use any system calls, because the <A HREF="../../lib/Pod/perlfunc.html#item_kill"><CODE>kill()</CODE></A>
  281. is given no processes to signal):</P>
  282. <PRE>
  283.     sub is_tainted {
  284.         return ! eval { join('',@_), kill 0; 1; };
  285.     }</PRE>
  286. <P>This is not <CODE>-w</CODE> clean, however.  There is no <CODE>-w</CODE> clean way to
  287. detect taintedness - take this as a hint that you should untaint
  288. all possibly-tainted data.</P>
  289. <P>
  290. <H2><A NAME="what's a closure">What's a closure?</A></H2>
  291. <P>Closures are documented in <A HREF="../../lib/Pod/perlref.html">the perlref manpage</A>.</P>
  292. <P><EM>Closure</EM> is a computer science term with a precise but
  293. hard-to-explain meaning. Closures are implemented in Perl as anonymous
  294. subroutines with lasting references to lexical variables outside their
  295. own scopes.  These lexicals magically refer to the variables that were
  296. around when the subroutine was defined (deep binding).</P>
  297. <P>Closures make sense in any programming language where you can have the
  298. return value of a function be itself a function, as you can in Perl.
  299. Note that some languages provide anonymous functions but are not
  300. capable of providing proper closures; the Python language, for
  301. example.  For more information on closures, check out any textbook on
  302. functional programming.  Scheme is a language that not only supports
  303. but encourages closures.</P>
  304. <P>Here's a classic function-generating function:</P>
  305. <PRE>
  306.     sub add_function_generator {
  307.       return sub { shift + shift };
  308.     }</PRE>
  309. <PRE>
  310.     $add_sub = add_function_generator();
  311.     $sum = $add_sub->(4,5);                # $sum is 9 now.</PRE>
  312. <P>The closure works as a <EM>function template</EM> with some customization
  313. slots left out to be filled later.  The anonymous subroutine returned
  314. by <CODE>add_function_generator()</CODE> isn't technically a closure because it
  315. refers to no lexicals outside its own scope.</P>
  316. <P>Contrast this with the following <CODE>make_adder()</CODE> function, in which the
  317. returned anonymous function contains a reference to a lexical variable
  318. outside the scope of that function itself.  Such a reference requires
  319. that Perl return a proper closure, thus locking in for all time the
  320. value that the lexical had when the function was created.</P>
  321. <PRE>
  322.     sub make_adder {
  323.         my $addpiece = shift;
  324.         return sub { shift + $addpiece };
  325.     }</PRE>
  326. <PRE>
  327.     $f1 = make_adder(20);
  328.     $f2 = make_adder(555);</PRE>
  329. <P>Now <CODE>&$f1($n)</CODE> is always 20 plus whatever $n you pass in, whereas
  330. <CODE>&$f2($n)</CODE> is always 555 plus whatever $n you pass in.  The $addpiece
  331. in the closure sticks around.</P>
  332. <P>Closures are often used for less esoteric purposes.  For example, when
  333. you want to pass in a bit of code into a function:</P>
  334. <PRE>
  335.     my $line;
  336.     timeout( 30, sub { $line = <STDIN> } );</PRE>
  337. <P>If the code to execute had been passed in as a string,
  338. <CODE>'$line = <STDIN>'</CODE>, there would have been no way for the
  339. hypothetical <CODE>timeout()</CODE> function to access the lexical variable
  340. $line back in its caller's scope.</P>
  341. <P>
  342. <H2><A NAME="what is variable suicide and how can i prevent it">What is variable suicide and how can I prevent it?</A></H2>
  343. <P>Variable suicide is when you (temporarily or permanently) lose the
  344. value of a variable.  It is caused by scoping through <A HREF="../../lib/Pod/perlfunc.html#item_my"><CODE>my()</CODE></A> and <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local()</CODE></A>
  345. interacting with either closures or aliased <CODE>foreach()</CODE> iterator
  346. variables and subroutine arguments.  It used to be easy to
  347. inadvertently lose a variable's value this way, but now it's much
  348. harder.  Take this code:</P>
  349. <PRE>
  350.     my $f = "foo";
  351.     sub T {
  352.       while ($i++ < 3) { my $f = $f; $f .= "bar"; print $f, "\n" }
  353.     }
  354.     T;
  355.     print "Finally $f\n";</PRE>
  356. <P>The $f that has ``bar'' added to it three times should be a new <CODE>$f</CODE>
  357. (<CODE>my $f</CODE> should create a new local variable each time through the loop).
  358. It isn't, however.  This was a bug, now fixed in the latest releases
  359. (tested against 5.004_05, 5.005_03, and 5.005_56).</P>
  360. <P>
  361. <H2><A NAME="how can i pass/return a {function, filehandle, array, hash, method, regex}">How can I pass/return a {Function, FileHandle, Array, Hash, Method, Regex}?</A></H2>
  362. <P>With the exception of regexes, you need to pass references to these
  363. objects.  See <A HREF="../../lib/Pod/perlsub.html#pass by reference">Pass by Reference in the perlsub manpage</A> for this particular
  364. question, and <A HREF="../../lib/Pod/perlref.html">the perlref manpage</A> for information on references.</P>
  365. <DL>
  366. <DT><STRONG><A NAME="item_Passing_Variables_and_Functions">Passing Variables and Functions</A></STRONG><BR>
  367. <DD>
  368. Regular variables and functions are quite easy: just pass in a
  369. reference to an existing or anonymous variable or function:
  370. <PRE>
  371.     func( \$some_scalar );</PRE>
  372. <PRE>
  373.     func( \@some_array  );
  374.     func( [ 1 .. 10 ]   );</PRE>
  375. <PRE>
  376.     func( \%some_hash   );
  377.     func( { this => 10, that => 20 }   );</PRE>
  378. <PRE>
  379.     func( \&some_func   );
  380.     func( sub { $_[0] ** $_[1] }   );</PRE>
  381. <P></P>
  382. <DT><STRONG><A NAME="item_Passing_Filehandles">Passing Filehandles</A></STRONG><BR>
  383. <DD>
  384. To pass filehandles to subroutines, use the <CODE>*FH</CODE> or <CODE>\*FH</CODE> notations.
  385. These are ``typeglobs'' - see <A HREF="../../lib/Pod/perldata.html#typeglobs and filehandles">Typeglobs and Filehandles in the perldata manpage</A>
  386. and especially <A HREF="../../lib/Pod/perlsub.html#pass by reference">Pass by Reference in the perlsub manpage</A> for more information.
  387. <P>Here's an excerpt:</P>
  388. <P>If you're passing around filehandles, you could usually just use the bare
  389. typeglob, like *STDOUT, but typeglobs references would be better because
  390. they'll still work properly under <CODE>use strict 'refs'</CODE>.  For example:</P>
  391. <PRE>
  392.     splutter(\*STDOUT);
  393.     sub splutter {
  394.         my $fh = shift;
  395.         print $fh "her um well a hmmm\n";
  396.     }</PRE>
  397. <PRE>
  398.     $rec = get_rec(\*STDIN);
  399.     sub get_rec {
  400.         my $fh = shift;
  401.         return scalar <$fh>;
  402.     }</PRE>
  403. <P>If you're planning on generating new filehandles, you could do this:</P>
  404. <PRE>
  405.     sub openit {
  406.         my $name = shift;
  407.         local *FH;
  408.         return open (FH, $path) ? *FH : undef;
  409.     }
  410.     $fh = openit('< /etc/motd');
  411.     print <$fh>;</PRE>
  412. <P></P>
  413. <DT><STRONG><A NAME="item_Passing_Regexes">Passing Regexes</A></STRONG><BR>
  414. <DD>
  415. To pass regexes around, you'll need to be using a release of Perl
  416. sufficiently recent as to support the <CODE>qr//</CODE> construct, pass around
  417. strings and use an exception-trapping eval, or else be very, very clever.
  418. <P>Here's an example of how to pass in a string to be regex compared
  419. using <CODE>qr//</CODE>:</P>
  420. <PRE>
  421.     sub compare($$) {
  422.         my ($val1, $regex) = @_;
  423.         my $retval = $val1 =~ /$regex/;
  424.         return $retval;
  425.     }
  426.     $match = compare("old McDonald", qr/d.*D/i);</PRE>
  427. <P>Notice how <CODE>qr//</CODE> allows flags at the end.  That pattern was compiled
  428. at compile time, although it was executed later.  The nifty <CODE>qr//</CODE>
  429. notation wasn't introduced until the 5.005 release.  Before that, you
  430. had to approach this problem much less intuitively.  For example, here
  431. it is again if you don't have <CODE>qr//</CODE>:</P>
  432. <PRE>
  433.     sub compare($$) {
  434.         my ($val1, $regex) = @_;
  435.         my $retval = eval { $val1 =~ /$regex/ };
  436.         die if $@;
  437.         return $retval;
  438.     }</PRE>
  439. <PRE>
  440.     $match = compare("old McDonald", q/($?i)d.*D/);</PRE>
  441. <P>Make sure you never say something like this:</P>
  442. <PRE>
  443.     return eval "\$val =~ /$regex/";   # WRONG</PRE>
  444. <P>or someone can sneak shell escapes into the regex due to the double
  445. interpolation of the eval and the double-quoted string.  For example:</P>
  446. <PRE>
  447.     $pattern_of_evil = 'danger ${ system("rm -rf * &") } danger';</PRE>
  448. <PRE>
  449.     eval "\$string =~ /$pattern_of_evil/";</PRE>
  450. <P>Those preferring to be very, very clever might see the O'Reilly book,
  451. <EM>Mastering Regular Expressions</EM>, by Jeffrey Friedl.  Page 273's
  452. <CODE>Build_MatchMany_Function()</CODE> is particularly interesting.  A complete
  453. citation of this book is given in <A HREF="../../lib/Pod/perlfaq2.html">the perlfaq2 manpage</A>.</P>
  454. <P></P>
  455. <DT><STRONG><A NAME="item_Passing_Methods">Passing Methods</A></STRONG><BR>
  456. <DD>
  457. To pass an object method into a subroutine, you can do this:
  458. <PRE>
  459.     call_a_lot(10, $some_obj, "methname")
  460.     sub call_a_lot {
  461.         my ($count, $widget, $trick) = @_;
  462.         for (my $i = 0; $i < $count; $i++) {
  463.             $widget->$trick();
  464.         }
  465.     }</PRE>
  466. <P>Or you can use a closure to bundle up the object and its method call
  467. and arguments:</P>
  468. <PRE>
  469.     my $whatnot =  sub { $some_obj->obfuscate(@args) };
  470.     func($whatnot);
  471.     sub func {
  472.         my $code = shift;
  473.         &$code();
  474.     }</PRE>
  475. <P>You could also investigate the <CODE>can()</CODE> method in the UNIVERSAL class
  476. (part of the standard perl distribution).</P>
  477. <P></P></DL>
  478. <P>
  479. <H2><A NAME="how do i create a static variable">How do I create a static variable?</A></H2>
  480. <P>As with most things in Perl, TMTOWTDI.  What is a ``static variable'' in
  481. other languages could be either a function-private variable (visible
  482. only within a single function, retaining its value between calls to
  483. that function), or a file-private variable (visible only to functions
  484. within the file it was declared in) in Perl.</P>
  485. <P>Here's code to implement a function-private variable:</P>
  486. <PRE>
  487.     BEGIN {
  488.         my $counter = 42;
  489.         sub prev_counter { return --$counter }
  490.         sub next_counter { return $counter++ }
  491.     }</PRE>
  492. <P>Now <CODE>prev_counter()</CODE> and <CODE>next_counter()</CODE> share a private variable $counter
  493. that was initialized at compile time.</P>
  494. <P>To declare a file-private variable, you'll still use a my(), putting
  495. it at the outer scope level at the top of the file.  Assume this is in
  496. file Pax.pm:</P>
  497. <PRE>
  498.     package Pax;
  499.     my $started = scalar(localtime(time()));</PRE>
  500. <PRE>
  501.     sub begun { return $started }</PRE>
  502. <P>When <CODE>use Pax</CODE> or <CODE>require Pax</CODE> loads this module, the variable will
  503. be initialized.  It won't get garbage-collected the way most variables
  504. going out of scope do, because the <CODE>begun()</CODE> function cares about it,
  505. but no one else can get it.  It is not called $Pax::started because
  506. its scope is unrelated to the package.  It's scoped to the file.  You
  507. could conceivably have several packages in that same file all
  508. accessing the same private variable, but another file with the same
  509. package couldn't get to it.</P>
  510. <P>See <A HREF="../../lib/Pod/perlsub.html#persistent private variables">Persistent Private Variables in the perlsub manpage</A> for details.</P>
  511. <P>
  512. <H2><A NAME="what's the difference between dynamic and lexical (static) scoping between local() and my()">What's the difference between dynamic and lexical (static) scoping?  Between <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local()</CODE></A> and my()?</A></H2>
  513. <P><A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local($x)</CODE></A> saves away the old value of the global variable <CODE>$x</CODE>,
  514. and assigns a new value for the duration of the subroutine, <EM>which is
  515. visible in other functions called from that subroutine</EM>.  This is done
  516. at run-time, so is called dynamic scoping.  <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local()</CODE></A> always affects global
  517. variables, also called package variables or dynamic variables.</P>
  518. <P><A HREF="../../lib/Pod/perlfunc.html#item_my"><CODE>my($x)</CODE></A> creates a new variable that is only visible in the current
  519. subroutine.  This is done at compile-time, so is called lexical or
  520. static scoping.  <A HREF="../../lib/Pod/perlfunc.html#item_my"><CODE>my()</CODE></A> always affects private variables, also called
  521. lexical variables or (improperly) static(ly scoped) variables.</P>
  522. <P>For instance:</P>
  523. <PRE>
  524.     sub visible {
  525.         print "var has value $var\n";
  526.     }</PRE>
  527. <PRE>
  528.     sub dynamic {
  529.         local $var = 'local';   # new temporary value for the still-global
  530.         visible();              #   variable called $var
  531.     }</PRE>
  532. <PRE>
  533.     sub lexical {
  534.         my $var = 'private';    # new private variable, $var
  535.         visible();              # (invisible outside of sub scope)
  536.     }</PRE>
  537. <PRE>
  538.     $var = 'global';</PRE>
  539. <PRE>
  540.     visible();                  # prints global
  541.     dynamic();                  # prints local
  542.     lexical();                  # prints global</PRE>
  543. <P>Notice how at no point does the value ``private'' get printed.  That's
  544. because $var only has that value within the block of the <CODE>lexical()</CODE>
  545. function, and it is hidden from called subroutine.</P>
  546. <P>In summary, <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local()</CODE></A> doesn't make what you think of as private, local
  547. variables.  It gives a global variable a temporary value.  <A HREF="../../lib/Pod/perlfunc.html#item_my"><CODE>my()</CODE></A> is
  548. what you're looking for if you want private variables.</P>
  549. <P>See <A HREF="../../lib/Pod/perlsub.html#private variables via my()">Private Variables via my() in the perlsub manpage</A> and <A HREF="../../lib/Pod/perlsub.html#temporary values via local()">Temporary Values via local() in the perlsub manpage</A> for excruciating details.</P>
  550. <P>
  551. <H2><A NAME="how can i access a dynamic variable while a similarly named lexical is in scope">How can I access a dynamic variable while a similarly named lexical is in scope?</A></H2>
  552. <P>You can do this via symbolic references, provided you haven't set
  553. <CODE>use strict "refs"</CODE>.  So instead of $var, use <CODE>${'var'}</CODE>.</P>
  554. <PRE>
  555.     local $var = "global";
  556.     my    $var = "lexical";</PRE>
  557. <PRE>
  558.     print "lexical is $var\n";</PRE>
  559. <PRE>
  560.     no strict 'refs';
  561.     print "global  is ${'var'}\n";</PRE>
  562. <P>If you know your package, you can just mention it explicitly, as in
  563. $Some_Pack::var.  Note that the notation $::var is <EM>not</EM> the dynamic
  564. $var in the current package, but rather the one in the <CODE>main</CODE>
  565. package, as though you had written $main::var.  Specifying the package
  566. directly makes you hard-code its name, but it executes faster and
  567. avoids running afoul of <CODE>use strict "refs"</CODE>.</P>
  568. <P>
  569. <H2><A NAME="what's the difference between deep and shallow binding">What's the difference between deep and shallow binding?</A></H2>
  570. <P>In deep binding, lexical variables mentioned in anonymous subroutines
  571. are the same ones that were in scope when the subroutine was created.
  572. In shallow binding, they are whichever variables with the same names
  573. happen to be in scope when the subroutine is called.  Perl always uses
  574. deep binding of lexical variables (i.e., those created with my()).
  575. However, dynamic variables (aka global, local, or package variables)
  576. are effectively shallowly bound.  Consider this just one more reason
  577. not to use them.  See the answer to <A HREF="#what's a closure">What's a closure?</A>.</P>
  578. <P>
  579. <H2><A NAME="why doesn't my($foo) = <file>; work right">Why doesn't ``my($foo) = <FILE>;'' work right?</A></H2>
  580. <P><A HREF="../../lib/Pod/perlfunc.html#item_my"><CODE>my()</CODE></A> and <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local()</CODE></A> give list context to the right hand side
  581. of <CODE>=</CODE>.  The <FH> read operation, like so many of Perl's
  582. functions and operators, can tell which context it was called in and
  583. behaves appropriately.  In general, the <A HREF="../../lib/Pod/perlfunc.html#item_scalar"><CODE>scalar()</CODE></A> function can help.
  584. This function does nothing to the data itself (contrary to popular myth)
  585. but rather tells its argument to behave in whatever its scalar fashion is.
  586. If that function doesn't have a defined scalar behavior, this of course
  587. doesn't help you (such as with sort()).</P>
  588. <P>To enforce scalar context in this particular case, however, you need
  589. merely omit the parentheses:</P>
  590. <PRE>
  591.     local($foo) = <FILE>;           # WRONG
  592.     local($foo) = scalar(<FILE>);   # ok
  593.     local $foo  = <FILE>;           # right</PRE>
  594. <P>You should probably be using lexical variables anyway, although the
  595. issue is the same here:</P>
  596. <PRE>
  597.     my($foo) = <FILE>;  # WRONG
  598.     my $foo  = <FILE>;  # right</PRE>
  599. <P>
  600. <H2><A NAME="how do i redefine a builtin function, operator, or method">How do I redefine a builtin function, operator, or method?</A></H2>
  601. <P>Why do you want to do that? :-)</P>
  602. <P>If you want to override a predefined function, such as open(),
  603. then you'll have to import the new definition from a different
  604. module.  See <A HREF="../../lib/Pod/perlsub.html#overriding builtin functions">Overriding Built-in Functions in the perlsub manpage</A>.  There's
  605. also an example in <A HREF="../../lib/Pod/perltoot.html#class::template">Class::Template in the perltoot manpage</A>.</P>
  606. <P>If you want to overload a Perl operator, such as <CODE>+</CODE> or <CODE>**</CODE>,
  607. then you'll want to use the <CODE>use overload</CODE> pragma, documented
  608. in <A HREF="../../lib/overload.html">the overload manpage</A>.</P>
  609. <P>If you're talking about obscuring method calls in parent classes,
  610. see <A HREF="../../lib/Pod/perltoot.html#overridden methods">Overridden Methods in the perltoot manpage</A>.</P>
  611. <P>
  612. <H2><A NAME="what's the difference between calling a function as &foo and foo()">What's the difference between calling a function as &foo and foo()?</A></H2>
  613. <P>When you call a function as <CODE>&foo</CODE>, you allow that function access to
  614. your current @_ values, and you by-pass prototypes.  That means that
  615. the function doesn't get an empty @_, it gets yours!  While not
  616. strictly speaking a bug (it's documented that way in <A HREF="../../lib/Pod/perlsub.html">the perlsub manpage</A>), it
  617. would be hard to consider this a feature in most cases.</P>
  618. <P>When you call your function as <CODE>&foo()</CODE>, then you <EM>do</EM> get a new @_,
  619. but prototyping is still circumvented.</P>
  620. <P>Normally, you want to call a function using <CODE>foo()</CODE>.  You may only
  621. omit the parentheses if the function is already known to the compiler
  622. because it already saw the definition (<A HREF="../../lib/Pod/perlfunc.html#item_use"><CODE>use</CODE></A> but not <A HREF="../../lib/Pod/perlfunc.html#item_require"><CODE>require</CODE></A>),
  623. or via a forward reference or <CODE>use subs</CODE> declaration.  Even in this
  624. case, you get a clean @_ without any of the old values leaking through
  625. where they don't belong.</P>
  626. <P>
  627. <H2><A NAME="how do i create a switch or case statement">How do I create a switch or case statement?</A></H2>
  628. <P>This is explained in more depth in the <A HREF="../../lib/Pod/perlsyn.html">the perlsyn manpage</A>.  Briefly, there's
  629. no official case statement, because of the variety of tests possible
  630. in Perl (numeric comparison, string comparison, glob comparison,
  631. regex matching, overloaded comparisons, ...).  Larry couldn't decide
  632. how best to do this, so he left it out, even though it's been on the
  633. wish list since perl1.</P>
  634. <P>The general answer is to write a construct like this:</P>
  635. <PRE>
  636.     for ($variable_to_test) {
  637.         if    (/pat1/)  { }     # do something
  638.         elsif (/pat2/)  { }     # do something else
  639.         elsif (/pat3/)  { }     # do something else
  640.         else            { }     # default
  641.     }</PRE>
  642. <P>Here's a simple example of a switch based on pattern matching, this
  643. time lined up in a way to make it look more like a switch statement.
  644. We'll do a multi-way conditional based on the type of reference stored
  645. in $whatchamacallit:</P>
  646. <PRE>
  647.     SWITCH: for (ref $whatchamacallit) {</PRE>
  648. <PRE>
  649.         /^$/            && die "not a reference";</PRE>
  650. <PRE>
  651.         /SCALAR/        && do {
  652.                                 print_scalar($$ref);
  653.                                 last SWITCH;
  654.                         };</PRE>
  655. <PRE>
  656.         /ARRAY/         && do {
  657.                                 print_array(@$ref);
  658.                                 last SWITCH;
  659.                         };</PRE>
  660. <PRE>
  661.         /HASH/          && do {
  662.                                 print_hash(%$ref);
  663.                                 last SWITCH;
  664.                         };</PRE>
  665. <PRE>
  666.         /CODE/          && do {
  667.                                 warn "can't print function ref";
  668.                                 last SWITCH;
  669.                         };</PRE>
  670. <PRE>
  671.         # DEFAULT</PRE>
  672. <PRE>
  673.         warn "User defined type skipped";</PRE>
  674. <PRE>
  675.     }</PRE>
  676. <P>See <CODE>perlsyn/"Basic BLOCKs and Switch Statements"</CODE> for many other 
  677. examples in this style.</P>
  678. <P>Sometimes you should change the positions of the constant and the variable.
  679. For example, let's say you wanted to test which of many answers you were
  680. given, but in a case-insensitive way that also allows abbreviations.
  681. You can use the following technique if the strings all start with
  682. different characters, or if you want to arrange the matches so that
  683. one takes precedence over another, as <CODE>"SEND"</CODE> has precedence over
  684. <CODE>"STOP"</CODE> here:</P>
  685. <PRE>
  686.     chomp($answer = <>);
  687.     if    ("SEND"  =~ /^\Q$answer/i) { print "Action is send\n"  }
  688.     elsif ("STOP"  =~ /^\Q$answer/i) { print "Action is stop\n"  }
  689.     elsif ("ABORT" =~ /^\Q$answer/i) { print "Action is abort\n" }
  690.     elsif ("LIST"  =~ /^\Q$answer/i) { print "Action is list\n"  }
  691.     elsif ("EDIT"  =~ /^\Q$answer/i) { print "Action is edit\n"  }</PRE>
  692. <P>A totally different approach is to create a hash of function references.</P>
  693. <PRE>
  694.     my %commands = (
  695.         "happy" => \&joy,
  696.         "sad",  => \&sullen,
  697.         "done"  => sub { die "See ya!" },
  698.         "mad"   => \&angry,
  699.     );</PRE>
  700. <PRE>
  701.     print "How are you? ";
  702.     chomp($string = <STDIN>);
  703.     if ($commands{$string}) {
  704.         $commands{$string}->();
  705.     } else {
  706.         print "No such command: $string\n";
  707.     }</PRE>
  708. <P>
  709. <H2><A NAME="how can i catch accesses to undefined variables/functions/methods">How can I catch accesses to undefined variables/functions/methods?</A></H2>
  710. <P>The AUTOLOAD method, discussed in <A HREF="../../lib/Pod/perlsub.html#autoloading">Autoloading in the perlsub manpage</A> and
  711. <A HREF="../../lib/Pod/perltoot.html#autoload: proxy methods">AUTOLOAD: Proxy Methods in the perltoot manpage</A>, lets you capture calls to
  712. undefined functions and methods.</P>
  713. <P>When it comes to undefined variables that would trigger a warning
  714. under <CODE>-w</CODE>, you can use a handler to trap the pseudo-signal
  715. <CODE>__WARN__</CODE> like this:</P>
  716. <PRE>
  717.     $SIG{__WARN__} = sub {</PRE>
  718. <PRE>
  719.         for ( $_[0] ) {         # voici un switch statement</PRE>
  720. <PRE>
  721.             /Use of uninitialized value/  && do {
  722.                 # promote warning to a fatal
  723.                 die $_;
  724.             };</PRE>
  725. <PRE>
  726.             # other warning cases to catch could go here;</PRE>
  727. <PRE>
  728.             warn $_;
  729.         }</PRE>
  730. <PRE>
  731.     };</PRE>
  732. <P>
  733. <H2><A NAME="why can't a method included in this same file be found">Why can't a method included in this same file be found?</A></H2>
  734. <P>Some possible reasons: your inheritance is getting confused, you've
  735. misspelled the method name, or the object is of the wrong type.  Check
  736. out <A HREF="../../lib/Pod/perltoot.html">the perltoot manpage</A> for details on these.  You may also use <A HREF="../../lib/Pod/perlfunc.html#item_ref"><CODE>print
  737. ref($object)</CODE></A> to find out the class <CODE>$object</CODE> was blessed into.</P>
  738. <P>Another possible reason for problems is because you've used the
  739. indirect object syntax (eg, <CODE>find Guru "Samy"</CODE>) on a class name
  740. before Perl has seen that such a package exists.  It's wisest to make
  741. sure your packages are all defined before you start using them, which
  742. will be taken care of if you use the <A HREF="../../lib/Pod/perlfunc.html#item_use"><CODE>use</CODE></A> statement instead of
  743. <A HREF="../../lib/Pod/perlfunc.html#item_require"><CODE>require</CODE></A>.  If not, make sure to use arrow notation (eg,
  744. <CODE>Guru->find("Samy")</CODE>) instead.  Object notation is explained in
  745. <A HREF="../../lib/Pod/perlobj.html">the perlobj manpage</A>.</P>
  746. <P>Make sure to read about creating modules in <A HREF="../../lib/Pod/perlmod.html">the perlmod manpage</A> and
  747. the perils of indirect objects in <A HREF="../../lib/Pod/perlobj.html#warning">WARNING in the perlobj manpage</A>.</P>
  748. <P>
  749. <H2><A NAME="how can i find out my current package">How can I find out my current package?</A></H2>
  750. <P>If you're just a random program, you can do this to find
  751. out what the currently compiled package is:</P>
  752. <PRE>
  753.     my $packname = __PACKAGE__;</PRE>
  754. <P>But if you're a method and you want to print an error message
  755. that includes the kind of object you were called on (which is
  756. not necessarily the same as the one in which you were compiled):</P>
  757. <PRE>
  758.     sub amethod {
  759.         my $self  = shift;
  760.         my $class = ref($self) || $self;
  761.         warn "called me from a $class object";
  762.     }</PRE>
  763. <P>
  764. <H2><A NAME="how can i comment out a large block of perl code">How can I comment out a large block of perl code?</A></H2>
  765. <P>Use embedded POD to discard it:</P>
  766. <PRE>
  767.     # program is here</PRE>
  768. <PRE>
  769.     =for nobody
  770.     This paragraph is commented out</PRE>
  771. <PRE>
  772.     # program continues</PRE>
  773. <PRE>
  774.     =begin comment text</PRE>
  775. <PRE>
  776.     all of this stuff</PRE>
  777. <PRE>
  778.     here will be ignored
  779.     by everyone</PRE>
  780. <PRE>
  781.     =end comment text</PRE>
  782. <PRE>
  783.     =cut</PRE>
  784. <P>This can't go just anywhere.  You have to put a pod directive where
  785. the parser is expecting a new statement, not just in the middle
  786. of an expression or some other arbitrary yacc grammar production.</P>
  787. <P>
  788. <H2><A NAME="how do i clear a package">How do I clear a package?</A></H2>
  789. <P>Use this code, provided by Mark-Jason Dominus:</P>
  790. <PRE>
  791.     sub scrub_package {
  792.         no strict 'refs';
  793.         my $pack = shift;
  794.         die "Shouldn't delete main package" 
  795.             if $pack eq "" || $pack eq "main";
  796.         my $stash = *{$pack . '::'}{HASH};
  797.         my $name;
  798.         foreach $name (keys %$stash) {
  799.             my $fullname = $pack . '::' . $name;
  800.             # Get rid of everything with that name.
  801.             undef $$fullname;
  802.             undef @$fullname;
  803.             undef %$fullname;
  804.             undef &$fullname;
  805.             undef *$fullname;
  806.         }
  807.     }</PRE>
  808. <P>Or, if you're using a recent release of Perl, you can 
  809. just use the Symbol::delete_package() function instead.</P>
  810. <P>
  811. <H2><A NAME="how can i use a variable as a variable name">How can I use a variable as a variable name?</A></H2>
  812. <P>Beginners often think they want to have a variable contain the name
  813. of a variable.</P>
  814. <PRE>
  815.     $fred    = 23;
  816.     $varname = "fred";
  817.     ++$$varname;         # $fred now 24</PRE>
  818. <P>This works <EM>sometimes</EM>, but it is a very bad idea for two reasons.</P>
  819. <P>The first reason is that they <EM>only work on global variables</EM>.
  820. That means above that if $fred is a lexical variable created with my(),
  821. that the code won't work at all: you'll accidentally access the global
  822. and skip right over the private lexical altogether.  Global variables
  823. are bad because they can easily collide accidentally and in general make
  824. for non-scalable and confusing code.</P>
  825. <P>Symbolic references are forbidden under the <CODE>use strict</CODE> pragma.
  826. They are not true references and consequently are not reference counted
  827. or garbage collected.</P>
  828. <P>The other reason why using a variable to hold the name of another
  829. variable a bad idea is that the question often stems from a lack of
  830. understanding of Perl data structures, particularly hashes.  By using
  831. symbolic references, you are just using the package's symbol-table hash
  832. (like <CODE>%main::</CODE>) instead of a user-defined hash.  The solution is to
  833. use your own hash or a real reference instead.</P>
  834. <PRE>
  835.     $fred    = 23;
  836.     $varname = "fred";
  837.     $USER_VARS{$varname}++;  # not $$varname++</PRE>
  838. <P>There we're using the %USER_VARS hash instead of symbolic references.
  839. Sometimes this comes up in reading strings from the user with variable
  840. references and wanting to expand them to the values of your perl
  841. program's variables.  This is also a bad idea because it conflates the
  842. program-addressable namespace and the user-addressable one.  Instead of
  843. reading a string and expanding it to the actual contents of your program's
  844. own variables:</P>
  845. <PRE>
  846.     $str = 'this has a $fred and $barney in it';
  847.     $str =~ s/(\$\w+)/$1/eeg;             # need double eval</PRE>
  848. <P>Instead, it would be better to keep a hash around like %USER_VARS and have
  849. variable references actually refer to entries in that hash:</P>
  850. <PRE>
  851.     $str =~ s/\$(\w+)/$USER_VARS{$1}/g;   # no /e here at all</PRE>
  852. <P>That's faster, cleaner, and safer than the previous approach.  Of course,
  853. you don't need to use a dollar sign.  You could use your own scheme to
  854. make it less confusing, like bracketed percent symbols, etc.</P>
  855. <PRE>
  856.     $str = 'this has a %fred% and %barney% in it';
  857.     $str =~ s/%(\w+)%/$USER_VARS{$1}/g;   # no /e here at all</PRE>
  858. <P>Another reason that folks sometimes think they want a variable to contain
  859. the name of a variable is because they don't know how to build proper
  860. data structures using hashes.  For example, let's say they wanted two
  861. hashes in their program: %fred and %barney, and to use another scalar
  862. variable to refer to those by name.</P>
  863. <PRE>
  864.     $name = "fred";
  865.     $$name{WIFE} = "wilma";     # set %fred</PRE>
  866. <PRE>
  867.     $name = "barney";           
  868.     $$name{WIFE} = "betty";     # set %barney</PRE>
  869. <P>This is still a symbolic reference, and is still saddled with the
  870. problems enumerated above.  It would be far better to write:</P>
  871. <PRE>
  872.     $folks{"fred"}{WIFE}   = "wilma";
  873.     $folks{"barney"}{WIFE} = "betty";</PRE>
  874. <P>And just use a multilevel hash to start with.</P>
  875. <P>The only times that you absolutely <EM>must</EM> use symbolic references are
  876. when you really must refer to the symbol table.  This may be because it's
  877. something that can't take a real reference to, such as a format name.
  878. Doing so may also be important for method calls, since these always go
  879. through the symbol table for resolution.</P>
  880. <P>In those cases, you would turn off <CODE>strict 'refs'</CODE> temporarily so you
  881. can play around with the symbol table.  For example:</P>
  882. <PRE>
  883.     @colors = qw(red blue green yellow orange purple violet);
  884.     for my $name (@colors) {
  885.         no strict 'refs';  # renege for the block
  886.         *$name = sub { "<FONT COLOR='$name'>@_</FONT>" };
  887.     }</PRE>
  888. <P>All those functions (red(), blue(), green(), etc.) appear to be separate,
  889. but the real code in the closure actually was compiled only once.</P>
  890. <P>So, sometimes you might want to use symbolic references to directly
  891. manipulate the symbol table.  This doesn't matter for formats, handles, and
  892. subroutines, because they are always global -- you can't use <A HREF="../../lib/Pod/perlfunc.html#item_my"><CODE>my()</CODE></A> on them.
  893. But for scalars, arrays, and hashes -- and usually for subroutines --
  894. you probably want to use hard references only.</P>
  895. <P>
  896. <HR>
  897. <H1><A NAME="author and copyright">AUTHOR AND COPYRIGHT</A></H1>
  898. <P>Copyright (c) 1997-1999 Tom Christiansen and Nathan Torkington.
  899. All rights reserved.</P>
  900. <P>When included as part of the Standard Version of Perl, or as part of
  901. its complete documentation whether printed or otherwise, this work
  902. may be distributed only under the terms of Perl's Artistic License.
  903. Any distribution of this file or derivatives thereof <EM>outside</EM>
  904. of that package require that special arrangements be made with
  905. copyright holder.</P>
  906. <P>Irrespective of its distribution, all code examples in this file
  907. are hereby placed into the public domain.  You are permitted and
  908. encouraged to use this code in your own programs for fun
  909. or for profit as you see fit.  A simple comment in the code giving
  910. credit would be courteous but is not required.</P>
  911. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  912. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  913. <STRONG><P CLASS=block> perlfaq7 - Perl Language Issues</P></STRONG>
  914. </TD></TR>
  915. </TABLE>
  916.  
  917. </BODY>
  918.  
  919. </HTML>
  920.