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

  1. <HTML>
  2. <HEAD>
  3. <TITLE>perlref - Perl references and nested data structures</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> perlref - Perl references and nested data structures</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="#note">NOTE</A></LI>
  22.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  23.     <UL>
  24.  
  25.         <LI><A HREF="#making references">Making References</A></LI>
  26.         <LI><A HREF="#using references">Using References</A></LI>
  27.         <LI><A HREF="#symbolic references">Symbolic references</A></LI>
  28.         <LI><A HREF="#notsosymbolic references">Not-so-symbolic references</A></LI>
  29.         <LI><A HREF="#pseudohashes: using an array as a hash">Pseudo-hashes: Using an array as a hash</A></LI>
  30.         <LI><A HREF="#function templates">Function Templates</A></LI>
  31.     </UL>
  32.  
  33.     <LI><A HREF="#warning">WARNING</A></LI>
  34.     <LI><A HREF="#see also">SEE ALSO</A></LI>
  35. </UL>
  36. <!-- INDEX END -->
  37.  
  38. <HR>
  39. <P>
  40. <H1><A NAME="name">NAME</A></H1>
  41. <P>perlref - Perl references and nested data structures</P>
  42. <P>
  43. <HR>
  44. <H1><A NAME="note">NOTE</A></H1>
  45. <P>This is complete documentation about all aspects of references.
  46. For a shorter, tutorial introduction to just the essential features,
  47. see <A HREF="../../lib/Pod/perlreftut.html">the perlreftut manpage</A>.</P>
  48. <P>
  49. <HR>
  50. <H1><A NAME="description">DESCRIPTION</A></H1>
  51. <P>Before release 5 of Perl it was difficult to represent complex data
  52. structures, because all references had to be symbolic--and even then
  53. it was difficult to refer to a variable instead of a symbol table entry.
  54. Perl now not only makes it easier to use symbolic references to variables,
  55. but also lets you have ``hard'' references to any piece of data or code.
  56. Any scalar may hold a hard reference.  Because arrays and hashes contain
  57. scalars, you can now easily build arrays of arrays, arrays of hashes,
  58. hashes of arrays, arrays of hashes of functions, and so on.</P>
  59. <P>Hard references are smart--they keep track of reference counts for you,
  60. automatically freeing the thing referred to when its reference count goes
  61. to zero.  (Reference counts for values in self-referential or
  62. cyclic data structures may not go to zero without a little help; see
  63. <A HREF="../../lib/Pod/perlobj.html#twophased garbage collection">Two-Phased Garbage Collection in the perlobj manpage</A> for a detailed explanation.)
  64. If that thing happens to be an object, the object is destructed.  See
  65. <A HREF="../../lib/Pod/perlobj.html">the perlobj manpage</A> for more about objects.  (In a sense, everything in Perl is an
  66. object, but we usually reserve the word for references to objects that
  67. have been officially ``blessed'' into a class package.)</P>
  68. <P>Symbolic references are names of variables or other objects, just as a
  69. symbolic link in a Unix filesystem contains merely the name of a file.
  70. The <CODE>*glob</CODE> notation is something of a of symbolic reference.  (Symbolic
  71. references are sometimes called ``soft references'', but please don't call
  72. them that; references are confusing enough without useless synonyms.)</P>
  73. <P>In contrast, hard references are more like hard links in a Unix file
  74. system: They are used to access an underlying object without concern for
  75. what its (other) name is.  When the word ``reference'' is used without an
  76. adjective, as in the following paragraph, it is usually talking about a
  77. hard reference.</P>
  78. <P>References are easy to use in Perl.  There is just one overriding
  79. principle: Perl does no implicit referencing or dereferencing.  When a
  80. scalar is holding a reference, it always behaves as a simple scalar.  It
  81. doesn't magically start being an array or hash or subroutine; you have to
  82. tell it explicitly to do so, by dereferencing it.</P>
  83. <P>
  84. <H2><A NAME="making references">Making References</A></H2>
  85. <P>References can be created in several ways.</P>
  86. <OL>
  87. <LI>
  88. By using the backslash operator on a variable, subroutine, or value.
  89. (This works much like the & (address-of) operator in C.)  
  90. This typically creates <EM>another</EM> reference to a variable, because
  91. there's already a reference to the variable in the symbol table.  But
  92. the symbol table reference might go away, and you'll still have the
  93. reference that the backslash returned.  Here are some examples:
  94. <PRE>
  95.     $scalarref = \$foo;
  96.     $arrayref  = \@ARGV;
  97.     $hashref   = \%ENV;
  98.     $coderef   = \&handler;
  99.     $globref   = \*foo;</PRE>
  100. <P>It isn't possible to create a true reference to an IO handle (filehandle
  101. or dirhandle) using the backslash operator.  The most you can get is a
  102. reference to a typeglob, which is actually a complete symbol table entry.
  103. But see the explanation of the <CODE>*foo{THING}</CODE> syntax below.  However,
  104. you can still use type globs and globrefs as though they were IO handles.</P>
  105. <P></P>
  106. <LI>
  107. A reference to an anonymous array can be created using square
  108. brackets:
  109. <PRE>
  110.     $arrayref = [1, 2, ['a', 'b', 'c']];</PRE>
  111. <P>Here we've created a reference to an anonymous array of three elements
  112. whose final element is itself a reference to another anonymous array of three
  113. elements.  (The multidimensional syntax described later can be used to
  114. access this.  For example, after the above, <CODE>$arrayref->[2][1]</CODE> would have
  115. the value ``b''.)</P>
  116. <P>Taking a reference to an enumerated list is not the same
  117. as using square brackets--instead it's the same as creating
  118. a list of references!</P>
  119. <PRE>
  120.     @list = (\$a, \@b, \%c);
  121.     @list = \($a, @b, %c);      # same thing!</PRE>
  122. <P>As a special case, <CODE>\(@foo)</CODE> returns a list of references to the contents
  123. of <CODE>@foo</CODE>, not a reference to <CODE>@foo</CODE> itself.  Likewise for <CODE>%foo</CODE>,
  124. except that the key references are to copies (since the keys are just
  125. strings rather than full-fledged scalars).</P>
  126. <P></P>
  127. <LI>
  128. A reference to an anonymous hash can be created using curly
  129. brackets:
  130. <PRE>
  131.     $hashref = {
  132.         'Adam'  => 'Eve',
  133.         'Clyde' => 'Bonnie',
  134.     };</PRE>
  135. <P>Anonymous hash and array composers like these can be intermixed freely to
  136. produce as complicated a structure as you want.  The multidimensional
  137. syntax described below works for these too.  The values above are
  138. literals, but variables and expressions would work just as well, because
  139. assignment operators in Perl (even within <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local()</CODE></A> or <A HREF="../../lib/Pod/perlfunc.html#item_my"><CODE>my())</CODE></A> are executable
  140. statements, not compile-time declarations.</P>
  141. <P>Because curly brackets (braces) are used for several other things
  142. including BLOCKs, you may occasionally have to disambiguate braces at the
  143. beginning of a statement by putting a <CODE>+</CODE> or a <A HREF="../../lib/Pod/perlfunc.html#item_return"><CODE>return</CODE></A> in front so
  144. that Perl realizes the opening brace isn't starting a BLOCK.  The economy and
  145. mnemonic value of using curlies is deemed worth this occasional extra
  146. hassle.</P>
  147. <P>For example, if you wanted a function to make a new hash and return a
  148. reference to it, you have these options:</P>
  149. <PRE>
  150.     sub hashem {        { @_ } }   # silently wrong
  151.     sub hashem {       +{ @_ } }   # ok
  152.     sub hashem { return { @_ } }   # ok</PRE>
  153. <P>On the other hand, if you want the other meaning, you can do this:</P>
  154. <PRE>
  155.     sub showem {        { @_ } }   # ambiguous (currently ok, but may change)
  156.     sub showem {       {; @_ } }   # ok
  157.     sub showem { { return @_ } }   # ok</PRE>
  158. <P>The leading <CODE>+{</CODE> and <CODE>{;</CODE> always serve to disambiguate
  159. the expression to mean either the HASH reference, or the BLOCK.</P>
  160. <P></P>
  161. <LI>
  162. A reference to an anonymous subroutine can be created by using
  163. <A HREF="../../lib/Pod/perlfunc.html#item_sub"><CODE>sub</CODE></A> without a subname:
  164. <PRE>
  165.     $coderef = sub { print "Boink!\n" };</PRE>
  166. <P>Note the semicolon.  Except for the code
  167. inside not being immediately executed, a <A HREF="../../lib/Pod/perlfunc.html#item_sub"><CODE>sub {}</CODE></A> is not so much a
  168. declaration as it is an operator, like <A HREF="../../lib/Pod/perlfunc.html#item_do"><CODE>do{}</CODE></A> or <A HREF="../../lib/Pod/perlfunc.html#item_eval"><CODE>eval{}</CODE></A>.  (However, no
  169. matter how many times you execute that particular line (unless you're in an
  170. <A HREF="../../lib/Pod/perlfunc.html#item_eval"><CODE>eval("...")</CODE></A>), $coderef will still have a reference to the <EM>same</EM>
  171. anonymous subroutine.)</P>
  172. <P>Anonymous subroutines act as closures with respect to <A HREF="../../lib/Pod/perlfunc.html#item_my"><CODE>my()</CODE></A> variables,
  173. that is, variables lexically visible within the current scope.  Closure
  174. is a notion out of the Lisp world that says if you define an anonymous
  175. function in a particular lexical context, it pretends to run in that
  176. context even when it's called outside the context.</P>
  177. <P>In human terms, it's a funny way of passing arguments to a subroutine when
  178. you define it as well as when you call it.  It's useful for setting up
  179. little bits of code to run later, such as callbacks.  You can even
  180. do object-oriented stuff with it, though Perl already provides a different
  181. mechanism to do that--see <A HREF="../../lib/Pod/perlobj.html">the perlobj manpage</A>.</P>
  182. <P>You might also think of closure as a way to write a subroutine
  183. template without using eval().  Here's a small example of how
  184. closures work:</P>
  185. <PRE>
  186.     sub newprint {
  187.         my $x = shift;
  188.         return sub { my $y = shift; print "$x, $y!\n"; };
  189.     }
  190.     $h = newprint("Howdy");
  191.     $g = newprint("Greetings");</PRE>
  192. <PRE>
  193.     # Time passes...</PRE>
  194. <PRE>
  195.     &$h("world");
  196.     &$g("earthlings");</PRE>
  197. <P>This prints</P>
  198. <PRE>
  199.     Howdy, world!
  200.     Greetings, earthlings!</PRE>
  201. <P>Note particularly that $x continues to refer to the value passed
  202. into <CODE>newprint()</CODE> <EM>despite</EM> ``my $x'' having gone out of scope by the
  203. time the anonymous subroutine runs.  That's what a closure is all
  204. about.</P>
  205. <P>This applies only to lexical variables, by the way.  Dynamic variables
  206. continue to work as they have always worked.  Closure is not something
  207. that most Perl programmers need trouble themselves about to begin with.</P>
  208. <P></P>
  209. <LI>
  210. References are often returned by special subroutines called constructors.
  211. Perl objects are just references to a special type of object that happens to know
  212. which package it's associated with.  Constructors are just special
  213. subroutines that know how to create that association.  They do so by
  214. starting with an ordinary reference, and it remains an ordinary reference
  215. even while it's also being an object.  Constructors are often
  216. named <CODE>new()</CODE> and called indirectly:
  217. <PRE>
  218.     $objref = new Doggie (Tail => 'short', Ears => 'long');</PRE>
  219. <P>But don't have to be:</P>
  220. <PRE>
  221.     $objref   = Doggie->new(Tail => 'short', Ears => 'long');</PRE>
  222. <PRE>
  223.     use Term::Cap;
  224.     $terminal = Term::Cap->Tgetent( { OSPEED => 9600 });</PRE>
  225. <PRE>
  226.     use Tk;
  227.     $main    = MainWindow->new();
  228.     $menubar = $main->Frame(-relief              => "raised",
  229.                             -borderwidth         => 2)</PRE>
  230. <P></P>
  231. <LI>
  232. References of the appropriate type can spring into existence if you
  233. dereference them in a context that assumes they exist.  Because we haven't
  234. talked about dereferencing yet, we can't show you any examples yet.
  235. <P></P>
  236. <LI>
  237. A reference can be created by using a special syntax, lovingly known as
  238. the *foo{THING} syntax.  *foo{THING} returns a reference to the THING
  239. slot in *foo (which is the symbol table entry which holds everything
  240. known as foo).
  241. <PRE>
  242.     $scalarref = *foo{SCALAR};
  243.     $arrayref  = *ARGV{ARRAY};
  244.     $hashref   = *ENV{HASH};
  245.     $coderef   = *handler{CODE};
  246.     $ioref     = *STDIN{IO};
  247.     $globref   = *foo{GLOB};</PRE>
  248. <P>All of these are self-explanatory except for <CODE>*foo{IO}</CODE>.  It returns
  249. the IO handle, used for file handles (<A HREF="../../lib/Pod/perlfunc.html#open">open in the perlfunc manpage</A>), sockets
  250. (<A HREF="../../lib/Pod/perlfunc.html#socket">socket in the perlfunc manpage</A> and <A HREF="../../lib/Pod/perlfunc.html#socketpair">socketpair in the perlfunc manpage</A>), and directory
  251. handles (<A HREF="../../lib/Pod/perlfunc.html#opendir">opendir in the perlfunc manpage</A>).  For compatibility with previous
  252. versions of Perl, <CODE>*foo{FILEHANDLE}</CODE> is a synonym for <CODE>*foo{IO}</CODE>.</P>
  253. <P><CODE>*foo{THING}</CODE> returns undef if that particular THING hasn't been used yet,
  254. except in the case of scalars.  <CODE>*foo{SCALAR}</CODE> returns a reference to an
  255. anonymous scalar if $foo hasn't been used yet.  This might change in a
  256. future release.</P>
  257. <P><CODE>*foo{IO}</CODE> is an alternative to the <CODE>*HANDLE</CODE> mechanism given in
  258. <A HREF="../../lib/Pod/perldata.html#typeglobs and filehandles">Typeglobs and Filehandles in the perldata manpage</A> for passing filehandles
  259. into or out of subroutines, or storing into larger data structures.
  260. Its disadvantage is that it won't create a new filehandle for you.
  261. Its advantage is that you have less risk of clobbering more than
  262. you want to with a typeglob assignment.  (It still conflates file
  263. and directory handles, though.)  However, if you assign the incoming
  264. value to a scalar instead of a typeglob as we do in the examples
  265. below, there's no risk of that happening.</P>
  266. <PRE>
  267.     splutter(*STDOUT);          # pass the whole glob
  268.     splutter(*STDOUT{IO});      # pass both file and dir handles</PRE>
  269. <PRE>
  270.     sub splutter {
  271.         my $fh = shift;
  272.         print $fh "her um well a hmmm\n";
  273.     }</PRE>
  274. <PRE>
  275.     $rec = get_rec(*STDIN);     # pass the whole glob
  276.     $rec = get_rec(*STDIN{IO}); # pass both file and dir handles</PRE>
  277. <PRE>
  278.     sub get_rec {
  279.         my $fh = shift;
  280.         return scalar <$fh>;
  281.     }</PRE>
  282. <P></P></OL>
  283. <P>
  284. <H2><A NAME="using references">Using References</A></H2>
  285. <P>That's it for creating references.  By now you're probably dying to
  286. know how to use references to get back to your long-lost data.  There
  287. are several basic methods.</P>
  288. <OL>
  289. <LI>
  290. Anywhere you'd put an identifier (or chain of identifiers) as part
  291. of a variable or subroutine name, you can replace the identifier with
  292. a simple scalar variable containing a reference of the correct type:
  293. <PRE>
  294.     $bar = $$scalarref;
  295.     push(@$arrayref, $filename);
  296.     $$arrayref[0] = "January";
  297.     $$hashref{"KEY"} = "VALUE";
  298.     &$coderef(1,2,3);
  299.     print $globref "output\n";</PRE>
  300. <P>It's important to understand that we are specifically <EM>not</EM> dereferencing
  301. <CODE>$arrayref[0]</CODE> or <CODE>$hashref{"KEY"}</CODE> there.  The dereference of the
  302. scalar variable happens <EM>before</EM> it does any key lookups.  Anything more
  303. complicated than a simple scalar variable must use methods 2 or 3 below.
  304. However, a ``simple scalar'' includes an identifier that itself uses method
  305. 1 recursively.  Therefore, the following prints ``howdy''.</P>
  306. <PRE>
  307.     $refrefref = \\\"howdy";
  308.     print $$$$refrefref;</PRE>
  309. <P></P>
  310. <LI>
  311. Anywhere you'd put an identifier (or chain of identifiers) as part of a
  312. variable or subroutine name, you can replace the identifier with a
  313. BLOCK returning a reference of the correct type.  In other words, the
  314. previous examples could be written like this:
  315. <PRE>
  316.     $bar = ${$scalarref};
  317.     push(@{$arrayref}, $filename);
  318.     ${$arrayref}[0] = "January";
  319.     ${$hashref}{"KEY"} = "VALUE";
  320.     &{$coderef}(1,2,3);
  321.     $globref->print("output\n");  # iff IO::Handle is loaded</PRE>
  322. <P>Admittedly, it's a little silly to use the curlies in this case, but
  323. the BLOCK can contain any arbitrary expression, in particular,
  324. subscripted expressions:</P>
  325. <PRE>
  326.     &{ $dispatch{$index} }(1,2,3);      # call correct routine</PRE>
  327. <P>Because of being able to omit the curlies for the simple case of <CODE>$$x</CODE>,
  328. people often make the mistake of viewing the dereferencing symbols as
  329. proper operators, and wonder about their precedence.  If they were,
  330. though, you could use parentheses instead of braces.  That's not the case.
  331. Consider the difference below; case 0 is a short-hand version of case 1,
  332. <EM>not</EM> case 2:</P>
  333. <PRE>
  334.     $$hashref{"KEY"}   = "VALUE";       # CASE 0
  335.     ${$hashref}{"KEY"} = "VALUE";       # CASE 1
  336.     ${$hashref{"KEY"}} = "VALUE";       # CASE 2
  337.     ${$hashref->{"KEY"}} = "VALUE";     # CASE 3</PRE>
  338. <P>Case 2 is also deceptive in that you're accessing a variable
  339. called %hashref, not dereferencing through $hashref to the hash
  340. it's presumably referencing.  That would be case 3.</P>
  341. <P></P>
  342. <LI>
  343. Subroutine calls and lookups of individual array elements arise often
  344. enough that it gets cumbersome to use method 2.  As a form of
  345. syntactic sugar, the examples for method 2 may be written:
  346. <PRE>
  347.     $arrayref->[0] = "January";   # Array element
  348.     $hashref->{"KEY"} = "VALUE";  # Hash element
  349.     $coderef->(1,2,3);            # Subroutine call</PRE>
  350. <P>The left side of the arrow can be any expression returning a reference,
  351. including a previous dereference.  Note that <CODE>$array[$x]</CODE> is <EM>not</EM> the
  352. same thing as <CODE>$array->[$x]</CODE> here:</P>
  353. <PRE>
  354.     $array[$x]->{"foo"}->[0] = "January";</PRE>
  355. <P>This is one of the cases we mentioned earlier in which references could
  356. spring into existence when in an lvalue context.  Before this
  357. statement, <CODE>$array[$x]</CODE> may have been undefined.  If so, it's
  358. automatically defined with a hash reference so that we can look up
  359. <CODE>{"foo"}</CODE> in it.  Likewise <CODE>$array[$x]->{"foo"}</CODE> will automatically get
  360. defined with an array reference so that we can look up <CODE>[0]</CODE> in it.
  361. This process is called <EM>autovivification</EM>.</P>
  362. <P>One more thing here.  The arrow is optional <EM>between</EM> brackets
  363. subscripts, so you can shrink the above down to</P>
  364. <PRE>
  365.     $array[$x]{"foo"}[0] = "January";</PRE>
  366. <P>Which, in the degenerate case of using only ordinary arrays, gives you
  367. multidimensional arrays just like C's:</P>
  368. <PRE>
  369.     $score[$x][$y][$z] += 42;</PRE>
  370. <P>Well, okay, not entirely like C's arrays, actually.  C doesn't know how
  371. to grow its arrays on demand.  Perl does.</P>
  372. <P></P>
  373. <LI>
  374. If a reference happens to be a reference to an object, then there are
  375. probably methods to access the things referred to, and you should probably
  376. stick to those methods unless you're in the class package that defines the
  377. object's methods.  In other words, be nice, and don't violate the object's
  378. encapsulation without a very good reason.  Perl does not enforce
  379. encapsulation.  We are not totalitarians here.  We do expect some basic
  380. civility though.
  381. <P></P></OL>
  382. <P>Using a string or number as a reference produces a symbolic reference,
  383. as explained above.  Using a reference as a number produces an
  384. integer representing its storage location in memory.  The only
  385. useful thing to be done with this is to compare two references
  386. numerically to see whether they refer to the same location.</P>
  387. <PRE>
  388.     if ($ref1 == $ref2) {  # cheap numeric compare of references
  389.         print "refs 1 and 2 refer to the same thing\n";
  390.     }</PRE>
  391. <P>Using a reference as a string produces both its referent's type,
  392. including any package blessing as described in <A HREF="../../lib/Pod/perlobj.html">the perlobj manpage</A>, as well
  393. as the numeric address expressed in hex.  The <A HREF="../../lib/Pod/perlfunc.html#item_ref"><CODE>ref()</CODE></A> operator returns
  394. just the type of thing the reference is pointing to, without the
  395. address.  See <A HREF="../../lib/Pod/perlfunc.html#ref">ref in the perlfunc manpage</A> for details and examples of its use.</P>
  396. <P>The <A HREF="../../lib/Pod/perlfunc.html#item_bless"><CODE>bless()</CODE></A> operator may be used to associate the object a reference
  397. points to with a package functioning as an object class.  See <A HREF="../../lib/Pod/perlobj.html">the perlobj manpage</A>.</P>
  398. <P>A typeglob may be dereferenced the same way a reference can, because
  399. the dereference syntax always indicates the type of reference desired.
  400. So <CODE>${*foo}</CODE> and <CODE>${\$foo}</CODE> both indicate the same scalar variable.</P>
  401. <P>Here's a trick for interpolating a subroutine call into a string:</P>
  402. <PRE>
  403.     print "My sub returned @{[mysub(1,2,3)]} that time.\n";</PRE>
  404. <P>The way it works is that when the <CODE>@{...}</CODE> is seen in the double-quoted
  405. string, it's evaluated as a block.  The block creates a reference to an
  406. anonymous array containing the results of the call to <CODE>mysub(1,2,3)</CODE>.  So
  407. the whole block returns a reference to an array, which is then
  408. dereferenced by <CODE>@{...}</CODE> and stuck into the double-quoted string. This
  409. chicanery is also useful for arbitrary expressions:</P>
  410. <PRE>
  411.     print "That yields @{[$n + 5]} widgets\n";</PRE>
  412. <P>
  413. <H2><A NAME="symbolic references">Symbolic references</A></H2>
  414. <P>We said that references spring into existence as necessary if they are
  415. undefined, but we didn't say what happens if a value used as a
  416. reference is already defined, but <EM>isn't</EM> a hard reference.  If you
  417. use it as a reference, it'll be treated as a symbolic
  418. reference.  That is, the value of the scalar is taken to be the <EM>name</EM>
  419. of a variable, rather than a direct link to a (possibly) anonymous
  420. value.</P>
  421. <P>People frequently expect it to work like this.  So it does.</P>
  422. <PRE>
  423.     $name = "foo";
  424.     $$name = 1;                 # Sets $foo
  425.     ${$name} = 2;               # Sets $foo
  426.     ${$name x 2} = 3;           # Sets $foofoo
  427.     $name->[0] = 4;             # Sets $foo[0]
  428.     @$name = ();                # Clears @foo
  429.     &$name();                   # Calls &foo() (as in Perl 4)
  430.     $pack = "THAT";
  431.     ${"${pack}::$name"} = 5;    # Sets $THAT::foo without eval</PRE>
  432. <P>This is powerful, and slightly dangerous, in that it's possible
  433. to intend (with the utmost sincerity) to use a hard reference, and
  434. accidentally use a symbolic reference instead.  To protect against
  435. that, you can say</P>
  436. <PRE>
  437.     use strict 'refs';</PRE>
  438. <P>and then only hard references will be allowed for the rest of the enclosing
  439. block.  An inner block may countermand that with</P>
  440. <PRE>
  441.     no strict 'refs';</PRE>
  442. <P>Only package variables (globals, even if localized) are visible to
  443. symbolic references.  Lexical variables (declared with <A HREF="../../lib/Pod/perlfunc.html#item_my"><CODE>my())</CODE></A> aren't in
  444. a symbol table, and thus are invisible to this mechanism.  For example:</P>
  445. <PRE>
  446.     local $value = 10;
  447.     $ref = "value";
  448.     {
  449.         my $value = 20;
  450.         print $$ref;
  451.     }</PRE>
  452. <P>This will still print 10, not 20.  Remember that <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local()</CODE></A> affects package
  453. variables, which are all ``global'' to the package.</P>
  454. <P>
  455. <H2><A NAME="notsosymbolic references">Not-so-symbolic references</A></H2>
  456. <P>A new feature contributing to readability in perl version 5.001 is that the
  457. brackets around a symbolic reference behave more like quotes, just as they
  458. always have within a string.  That is,</P>
  459. <PRE>
  460.     $push = "pop on ";
  461.     print "${push}over";</PRE>
  462. <P>has always meant to print ``pop on over'', even though push is
  463. a reserved word.  This has been generalized to work the same outside
  464. of quotes, so that</P>
  465. <PRE>
  466.     print ${push} . "over";</PRE>
  467. <P>and even</P>
  468. <PRE>
  469.     print ${ push } . "over";</PRE>
  470. <P>will have the same effect.  (This would have been a syntax error in
  471. Perl 5.000, though Perl 4 allowed it in the spaceless form.)  This
  472. construct is <EM>not</EM> considered to be a symbolic reference when you're
  473. using strict refs:</P>
  474. <PRE>
  475.     use strict 'refs';
  476.     ${ bareword };      # Okay, means $bareword.
  477.     ${ "bareword" };    # Error, symbolic reference.</PRE>
  478. <P>Similarly, because of all the subscripting that is done using single
  479. words, we've applied the same rule to any bareword that is used for
  480. subscripting a hash.  So now, instead of writing</P>
  481. <PRE>
  482.     $array{ "aaa" }{ "bbb" }{ "ccc" }</PRE>
  483. <P>you can write just</P>
  484. <PRE>
  485.     $array{ aaa }{ bbb }{ ccc }</PRE>
  486. <P>and not worry about whether the subscripts are reserved words.  In the
  487. rare event that you do wish to do something like</P>
  488. <PRE>
  489.     $array{ shift }</PRE>
  490. <P>you can force interpretation as a reserved word by adding anything that
  491. makes it more than a bareword:</P>
  492. <PRE>
  493.     $array{ shift() }
  494.     $array{ +shift }
  495.     $array{ shift @_ }</PRE>
  496. <P>The <CODE>use warnings</CODE> pragma or the <STRONG>-w</STRONG> switch will warn you if it
  497. interprets a reserved word as a string.
  498. But it will no longer warn you about using lowercase words, because the
  499. string is effectively quoted.</P>
  500. <P>
  501. <H2><A NAME="pseudohashes: using an array as a hash">Pseudo-hashes: Using an array as a hash</A></H2>
  502. <P><STRONG>WARNING</STRONG>:  This section describes an experimental feature.  Details may
  503. change without notice in future versions.</P>
  504. <P>Beginning with release 5.005 of Perl, you may use an array reference
  505. in some contexts that would normally require a hash reference.  This
  506. allows you to access array elements using symbolic names, as if they
  507. were fields in a structure.</P>
  508. <P>For this to work, the array must contain extra information.  The first
  509. element of the array has to be a hash reference that maps field names
  510. to array indices.  Here is an example:</P>
  511. <PRE>
  512.     $struct = [{foo => 1, bar => 2}, "FOO", "BAR"];</PRE>
  513. <PRE>
  514.     $struct->{foo};  # same as $struct->[1], i.e. "FOO"
  515.     $struct->{bar};  # same as $struct->[2], i.e. "BAR"</PRE>
  516. <PRE>
  517.     keys %$struct;   # will return ("foo", "bar") in some order
  518.     values %$struct; # will return ("FOO", "BAR") in same some order</PRE>
  519. <PRE>
  520.     while (my($k,$v) = each %$struct) {
  521.        print "$k => $v\n";
  522.     }</PRE>
  523. <P>Perl will raise an exception if you try to access nonexistent fields.
  524. To avoid inconsistencies, always use the fields::phash() function
  525. provided by the <CODE>fields</CODE> pragma.</P>
  526. <PRE>
  527.     use fields;
  528.     $pseudohash = fields::phash(foo => "FOO", bar => "BAR");</PRE>
  529. <P>For better performance, Perl can also do the translation from field
  530. names to array indices at compile time for typed object references.
  531. See <A HREF="../../lib/fields.html">the fields manpage</A>.</P>
  532. <P>There are two ways to check for the existence of a key in a
  533. pseudo-hash.  The first is to use exists().  This checks to see if the
  534. given field has ever been set.  It acts this way to match the behavior
  535. of a regular hash.  For instance:</P>
  536. <PRE>
  537.     use fields;
  538.     $phash = fields::phash([qw(foo bar pants)], ['FOO']);
  539.     $phash->{pants} = undef;</PRE>
  540. <PRE>
  541.     print exists $phash->{foo};    # true, 'foo' was set in the declaration
  542.     print exists $phash->{bar};    # false, 'bar' has not been used.
  543.     print exists $phash->{pants};  # true, your 'pants' have been touched</PRE>
  544. <P>The second is to use <A HREF="../../lib/Pod/perlfunc.html#item_exists"><CODE>exists()</CODE></A> on the hash reference sitting in the
  545. first array element.  This checks to see if the given key is a valid
  546. field in the pseudo-hash.</P>
  547. <PRE>
  548.     print exists $phash->[0]{bar};      # true, 'bar' is a valid field
  549.     print exists $phash->[0]{shoes};# false, 'shoes' can't be used</PRE>
  550. <P><A HREF="../../lib/Pod/perlfunc.html#item_delete"><CODE>delete()</CODE></A> on a pseudo-hash element only deletes the value corresponding
  551. to the key, not the key itself.  To delete the key, you'll have to
  552. explicitly delete it from the first hash element.</P>
  553. <PRE>
  554.     print delete $phash->{foo};     # prints $phash->[1], "FOO"
  555.     print exists $phash->{foo};     # false
  556.     print exists $phash->[0]{foo};  # true, key still exists
  557.     print delete $phash->[0]{foo};  # now key is gone
  558.     print $phash->{foo};            # runtime exception</PRE>
  559. <P>
  560. <H2><A NAME="function templates">Function Templates</A></H2>
  561. <P>As explained above, a closure is an anonymous function with access to the
  562. lexical variables visible when that function was compiled.  It retains
  563. access to those variables even though it doesn't get run until later,
  564. such as in a signal handler or a Tk callback.</P>
  565. <P>Using a closure as a function template allows us to generate many functions
  566. that act similarly.  Suppose you wanted functions named after the colors
  567. that generated HTML font changes for the various colors:</P>
  568. <PRE>
  569.     print "Be ", red("careful"), "with that ", green("light");</PRE>
  570. <P>The <CODE>red()</CODE> and <CODE>green()</CODE> functions would be similar.  To create these,
  571. we'll assign a closure to a typeglob of the name of the function we're
  572. trying to build.</P>
  573. <PRE>
  574.     @colors = qw(red blue green yellow orange purple violet);
  575.     for my $name (@colors) {
  576.         no strict 'refs';       # allow symbol table manipulation
  577.         *$name = *{uc $name} = sub { "<FONT COLOR='$name'>@_</FONT>" };
  578.     }</PRE>
  579. <P>Now all those different functions appear to exist independently.  You can
  580. call red(), RED(), blue(), BLUE(), green(), etc.  This technique saves on
  581. both compile time and memory use, and is less error-prone as well, since
  582. syntax checks happen at compile time.  It's critical that any variables in
  583. the anonymous subroutine be lexicals in order to create a proper closure.
  584. That's the reasons for the <A HREF="../../lib/Pod/perlfunc.html#item_my"><CODE>my</CODE></A> on the loop iteration variable.</P>
  585. <P>This is one of the only places where giving a prototype to a closure makes
  586. much sense.  If you wanted to impose scalar context on the arguments of
  587. these functions (probably not a wise idea for this particular example),
  588. you could have written it this way instead:</P>
  589. <PRE>
  590.     *$name = sub ($) { "<FONT COLOR='$name'>$_[0]</FONT>" };</PRE>
  591. <P>However, since prototype checking happens at compile time, the assignment
  592. above happens too late to be of much use.  You could address this by
  593. putting the whole loop of assignments within a BEGIN block, forcing it
  594. to occur during compilation.</P>
  595. <P>Access to lexicals that change over type--like those in the <CODE>for</CODE> loop
  596. above--only works with closures, not general subroutines.  In the general
  597. case, then, named subroutines do not nest properly, although anonymous
  598. ones do.  If you are accustomed to using nested subroutines in other
  599. programming languages with their own private variables, you'll have to
  600. work at it a bit in Perl.  The intuitive coding of this type of thing
  601. incurs mysterious warnings about ``will not stay shared''.  For example,
  602. this won't work:</P>
  603. <PRE>
  604.     sub outer {
  605.         my $x = $_[0] + 35;
  606.         sub inner { return $x * 19 }   # WRONG
  607.         return $x + inner();
  608.     }</PRE>
  609. <P>A work-around is the following:</P>
  610. <PRE>
  611.     sub outer {
  612.         my $x = $_[0] + 35;
  613.         local *inner = sub { return $x * 19 };
  614.         return $x + inner();
  615.     }</PRE>
  616. <P>Now <CODE>inner()</CODE> can only be called from within outer(), because of the
  617. temporary assignments of the closure (anonymous subroutine).  But when
  618. it does, it has normal access to the lexical variable $x from the scope
  619. of outer().</P>
  620. <P>This has the interesting effect of creating a function local to another
  621. function, something not normally supported in Perl.</P>
  622. <P>
  623. <HR>
  624. <H1><A NAME="warning">WARNING</A></H1>
  625. <P>You may not (usefully) use a reference as the key to a hash.  It will be
  626. converted into a string:</P>
  627. <PRE>
  628.     $x{ \$a } = $a;</PRE>
  629. <P>If you try to dereference the key, it won't do a hard dereference, and
  630. you won't accomplish what you're attempting.  You might want to do something
  631. more like</P>
  632. <PRE>
  633.     $r = \@a;
  634.     $x{ $r } = $r;</PRE>
  635. <P>And then at least you can use the values(), which will be
  636. real refs, instead of the keys(), which won't.</P>
  637. <P>The standard Tie::RefHash module provides a convenient workaround to this.</P>
  638. <P>
  639. <HR>
  640. <H1><A NAME="see also">SEE ALSO</A></H1>
  641. <P>Besides the obvious documents, source code can be instructive.
  642. Some pathological examples of the use of references can be found
  643. in the <EM>t/op/ref.t</EM> regression test in the Perl source directory.</P>
  644. <P>See also <A HREF="../../lib/Pod/perldsc.html">the perldsc manpage</A> and <A HREF="../../lib/Pod/perllol.html">the perllol manpage</A> for how to use references to create
  645. complex data structures, and <A HREF="../../lib/Pod/perltoot.html">the perltoot manpage</A>, <A HREF="../../lib/Pod/perlobj.html">the perlobj manpage</A>, and <A HREF="../../lib/Pod/perlbot.html">the perlbot manpage</A>
  646. for how to use them to create objects.</P>
  647. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  648. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  649. <STRONG><P CLASS=block> perlref - Perl references and nested data structures</P></STRONG>
  650. </TD></TR>
  651. </TABLE>
  652.  
  653. </BODY>
  654.  
  655. </HTML>
  656.