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

  1. <HTML>
  2. <HEAD>
  3. <TITLE>perlsub - Perl subroutines</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> perlsub - Perl subroutines</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="#synopsis">SYNOPSIS</A></LI>
  22.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  23.     <UL>
  24.  
  25.         <LI><A HREF="#private variables via my()">Private Variables via <A HREF="../../lib/Pod/perlfunc.html#item_my"><CODE>my()</CODE></A></A></LI>
  26.         <LI><A HREF="#persistent private variables">Persistent Private Variables</A></LI>
  27.         <LI><A HREF="#temporary values via local()">Temporary Values via <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local()</CODE></A></A></LI>
  28.         <LI><A HREF="#lvalue subroutines">Lvalue subroutines</A></LI>
  29.         <LI><A HREF="#passing symbol table entries (typeglobs)">Passing Symbol Table Entries (typeglobs)</A></LI>
  30.         <LI><A HREF="#when to still use local()">When to Still Use <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local()</CODE></A></A></LI>
  31.         <LI><A HREF="#pass by reference">Pass by Reference</A></LI>
  32.         <LI><A HREF="#prototypes">Prototypes</A></LI>
  33.         <LI><A HREF="#constant functions">Constant Functions</A></LI>
  34.         <LI><A HREF="#overriding builtin functions">Overriding Built-in Functions</A></LI>
  35.         <LI><A HREF="#autoloading">Autoloading</A></LI>
  36.         <LI><A HREF="#subroutine attributes">Subroutine Attributes</A></LI>
  37.     </UL>
  38.  
  39.     <LI><A HREF="#see also">SEE ALSO</A></LI>
  40. </UL>
  41. <!-- INDEX END -->
  42.  
  43. <HR>
  44. <P>
  45. <H1><A NAME="name">NAME</A></H1>
  46. <P>perlsub - Perl subroutines</P>
  47. <P>
  48. <HR>
  49. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  50. <P>To declare subroutines:</P>
  51. <PRE>
  52.     sub NAME;                     # A "forward" declaration.
  53.     sub NAME(PROTO);              #  ditto, but with prototypes
  54.     sub NAME : ATTRS;             #  with attributes
  55.     sub NAME(PROTO) : ATTRS;      #  with attributes and prototypes</PRE>
  56. <PRE>
  57.     sub NAME BLOCK                # A declaration and a definition.
  58.     sub NAME(PROTO) BLOCK         #  ditto, but with prototypes
  59.     sub NAME : ATTRS BLOCK        #  with attributes
  60.     sub NAME(PROTO) : ATTRS BLOCK #  with prototypes and attributes</PRE>
  61. <P>To define an anonymous subroutine at runtime:</P>
  62. <PRE>
  63.     $subref = sub BLOCK;                 # no proto
  64.     $subref = sub (PROTO) BLOCK;         # with proto
  65.     $subref = sub : ATTRS BLOCK;         # with attributes
  66.     $subref = sub (PROTO) : ATTRS BLOCK; # with proto and attributes</PRE>
  67. <P>To import subroutines:</P>
  68. <PRE>
  69.     use MODULE qw(NAME1 NAME2 NAME3);</PRE>
  70. <P>To call subroutines:</P>
  71. <PRE>
  72.     NAME(LIST);    # & is optional with parentheses.
  73.     NAME LIST;     # Parentheses optional if predeclared/imported.
  74.     &NAME(LIST);   # Circumvent prototypes.
  75.     &NAME;         # Makes current @_ visible to called subroutine.</PRE>
  76. <P>
  77. <HR>
  78. <H1><A NAME="description">DESCRIPTION</A></H1>
  79. <P>Like many languages, Perl provides for user-defined subroutines.
  80. These may be located anywhere in the main program, loaded in from
  81. other files via the <A HREF="../../lib/Pod/perlfunc.html#item_do"><CODE>do</CODE></A>, <A HREF="../../lib/Pod/perlfunc.html#item_require"><CODE>require</CODE></A>, or <A HREF="../../lib/Pod/perlfunc.html#item_use"><CODE>use</CODE></A> keywords, or
  82. generated on the fly using <A HREF="../../lib/Pod/perlfunc.html#item_eval"><CODE>eval</CODE></A> or anonymous subroutines (closures).
  83. You can even call a function indirectly using a variable containing
  84. its name or a CODE reference.</P>
  85. <P>The Perl model for function call and return values is simple: all
  86. functions are passed as parameters one single flat list of scalars, and
  87. all functions likewise return to their caller one single flat list of
  88. scalars.  Any arrays or hashes in these call and return lists will
  89. collapse, losing their identities--but you may always use
  90. pass-by-reference instead to avoid this.  Both call and return lists may
  91. contain as many or as few scalar elements as you'd like.  (Often a
  92. function without an explicit return statement is called a subroutine, but
  93. there's really no difference from Perl's perspective.)</P>
  94. <P>Any arguments passed in show up in the array <CODE>@_</CODE>.  Therefore, if
  95. you called a function with two arguments, those would be stored in
  96. <CODE>$_[0]</CODE> and <CODE>$_[1]</CODE>.  The array <CODE>@_</CODE> is a local array, but its
  97. elements are aliases for the actual scalar parameters.  In particular,
  98. if an element <CODE>$_[0]</CODE> is updated, the corresponding argument is
  99. updated (or an error occurs if it is not updatable).  If an argument
  100. is an array or hash element which did not exist when the function
  101. was called, that element is created only when (and if) it is modified
  102. or a reference to it is taken.  (Some earlier versions of Perl
  103. created the element whether or not the element was assigned to.)
  104. Assigning to the whole array <CODE>@_</CODE> removes that aliasing, and does
  105. not update any arguments.</P>
  106. <P>The return value of a subroutine is the value of the last expression
  107. evaluated.  More explicitly, a <A HREF="../../lib/Pod/perlfunc.html#item_return"><CODE>return</CODE></A> statement may be used to exit the
  108. subroutine, optionally specifying the returned value, which will be
  109. evaluated in the appropriate context (list, scalar, or void) depending
  110. on the context of the subroutine call.  If you specify no return value,
  111. the subroutine returns an empty list in list context, the undefined
  112. value in scalar context, or nothing in void context.  If you return
  113. one or more aggregates (arrays and hashes), these will be flattened
  114. together into one large indistinguishable list.</P>
  115. <P>Perl does not have named formal parameters.  In practice all you
  116. do is assign to a <A HREF="../../lib/Pod/perlfunc.html#item_my"><CODE>my()</CODE></A> list of these.  Variables that aren't
  117. declared to be private are global variables.  For gory details
  118. on creating private variables, see <A HREF="#private variables via my()">Private Variables via my()</A>
  119. and <A HREF="#temporary values via local()">Temporary Values via local()</A>.  To create protected
  120. environments for a set of functions in a separate package (and
  121. probably a separate file), see <A HREF="../../lib/Pod/perlmod.html#packages">Packages in the perlmod manpage</A>.</P>
  122. <P>Example:</P>
  123. <PRE>
  124.     sub max {
  125.         my $max = shift(@_);
  126.         foreach $foo (@_) {
  127.             $max = $foo if $max < $foo;
  128.         }
  129.         return $max;
  130.     }
  131.     $bestday = max($mon,$tue,$wed,$thu,$fri);</PRE>
  132. <P>Example:</P>
  133. <PRE>
  134.     # get a line, combining continuation lines
  135.     #  that start with whitespace</PRE>
  136. <PRE>
  137.     sub get_line {
  138.         $thisline = $lookahead;  # global variables!
  139.         LINE: while (defined($lookahead = <STDIN>)) {
  140.             if ($lookahead =~ /^[ \t]/) {
  141.                 $thisline .= $lookahead;
  142.             }
  143.             else {
  144.                 last LINE;
  145.             }
  146.         }
  147.         return $thisline;
  148.     }</PRE>
  149. <PRE>
  150.     $lookahead = <STDIN>;       # get first line
  151.     while (defined($line = get_line())) {
  152.         ...
  153.     }</PRE>
  154. <P>Assigning to a list of private variables to name your arguments:</P>
  155. <PRE>
  156.     sub maybeset {
  157.         my($key, $value) = @_;
  158.         $Foo{$key} = $value unless $Foo{$key};
  159.     }</PRE>
  160. <P>Because the assignment copies the values, this also has the effect
  161. of turning call-by-reference into call-by-value.  Otherwise a
  162. function is free to do in-place modifications of <CODE>@_</CODE> and change
  163. its caller's values.</P>
  164. <PRE>
  165.     upcase_in($v1, $v2);  # this changes $v1 and $v2
  166.     sub upcase_in {
  167.         for (@_) { tr/a-z/A-Z/ }
  168.     }</PRE>
  169. <P>You aren't allowed to modify constants in this way, of course.  If an
  170. argument were actually literal and you tried to change it, you'd take a
  171. (presumably fatal) exception.   For example, this won't work:</P>
  172. <PRE>
  173.     upcase_in("frederick");</PRE>
  174. <P>It would be much safer if the <CODE>upcase_in()</CODE> function
  175. were written to return a copy of its parameters instead
  176. of changing them in place:</P>
  177. <PRE>
  178.     ($v3, $v4) = upcase($v1, $v2);  # this doesn't change $v1 and $v2
  179.     sub upcase {
  180.         return unless defined wantarray;  # void context, do nothing
  181.         my @parms = @_;
  182.         for (@parms) { tr/a-z/A-Z/ }
  183.         return wantarray ? @parms : $parms[0];
  184.     }</PRE>
  185. <P>Notice how this (unprototyped) function doesn't care whether it was
  186. passed real scalars or arrays.  Perl sees all arugments as one big,
  187. long, flat parameter list in <CODE>@_</CODE>.  This is one area where
  188. Perl's simple argument-passing style shines.  The <CODE>upcase()</CODE>
  189. function would work perfectly well without changing the <CODE>upcase()</CODE>
  190. definition even if we fed it things like this:</P>
  191. <PRE>
  192.     @newlist   = upcase(@list1, @list2);
  193.     @newlist   = upcase( split /:/, $var );</PRE>
  194. <P>Do not, however, be tempted to do this:</P>
  195. <PRE>
  196.     (@a, @b)   = upcase(@list1, @list2);</PRE>
  197. <P>Like the flattened incoming parameter list, the return list is also
  198. flattened on return.  So all you have managed to do here is stored
  199. everything in <CODE>@a</CODE> and made <CODE>@b</CODE> an empty list.  See <A HREF="#pass by reference">Pass by Reference</A> for alternatives.</P>
  200. <P>A subroutine may be called using an explicit <CODE>&</CODE> prefix.  The
  201. <CODE>&</CODE> is optional in modern Perl, as are parentheses if the
  202. subroutine has been predeclared.  The <CODE>&</CODE> is <EM>not</EM> optional
  203. when just naming the subroutine, such as when it's used as
  204. an argument to <A HREF="../../lib/Pod/perlfunc.html#item_defined"><CODE>defined()</CODE></A> or undef().  Nor is it optional when you
  205. want to do an indirect subroutine call with a subroutine name or
  206. reference using the <CODE>&$subref()</CODE> or <CODE>&{$subref}()</CODE> constructs,
  207. although the <CODE>$subref->()</CODE> notation solves that problem.
  208. See <A HREF="../../lib/Pod/perlref.html">the perlref manpage</A> for more about all that.</P>
  209. <P>Subroutines may be called recursively.  If a subroutine is called
  210. using the <CODE>&</CODE> form, the argument list is optional, and if omitted,
  211. no <CODE>@_</CODE> array is set up for the subroutine: the <CODE>@_</CODE> array at the
  212. time of the call is visible to subroutine instead.  This is an
  213. efficiency mechanism that new users may wish to avoid.</P>
  214. <PRE>
  215.     &foo(1,2,3);        # pass three arguments
  216.     foo(1,2,3);         # the same</PRE>
  217. <PRE>
  218.     foo();              # pass a null list
  219.     &foo();             # the same</PRE>
  220. <PRE>
  221.     &foo;               # foo() get current args, like foo(@_) !!
  222.     foo;                # like foo() IFF sub foo predeclared, else "foo"</PRE>
  223. <P>Not only does the <CODE>&</CODE> form make the argument list optional, it also
  224. disables any prototype checking on arguments you do provide.  This
  225. is partly for historical reasons, and partly for having a convenient way
  226. to cheat if you know what you're doing.  See <EM>Prototypes</EM> below.</P>
  227. <P>Functions whose names are in all upper case are reserved to the Perl
  228. core, as are modules whose names are in all lower case.  A
  229. function in all capitals is a loosely-held convention meaning it
  230. will be called indirectly by the run-time system itself, usually
  231. due to a triggered event.  Functions that do special, pre-defined
  232. things include <CODE>BEGIN</CODE>, <CODE>CHECK</CODE>, <CODE>INIT</CODE>, <CODE>END</CODE>, <CODE>AUTOLOAD</CODE>, and
  233. <CODE>DESTROY</CODE>--plus all functions mentioned in <A HREF="../../lib/Pod/perltie.html">the perltie manpage</A>.</P>
  234. <P>
  235. <H2><A NAME="private variables via my()">Private Variables via <A HREF="../../lib/Pod/perlfunc.html#item_my"><CODE>my()</CODE></A></A></H2>
  236. <P>Synopsis:</P>
  237. <PRE>
  238.     my $foo;            # declare $foo lexically local
  239.     my (@wid, %get);    # declare list of variables local
  240.     my $foo = "flurp";  # declare $foo lexical, and init it
  241.     my @oof = @bar;     # declare @oof lexical, and init it
  242.     my $x : Foo = $y;   # similar, with an attribute applied</PRE>
  243. <P><STRONG>WARNING</STRONG>: The use of attribute lists on <A HREF="../../lib/Pod/perlfunc.html#item_my"><CODE>my</CODE></A> declarations is
  244. experimental.  This feature should not be relied upon.  It may
  245. change or disappear in future releases of Perl.  See <A HREF="../../lib/attributes.html">the attributes manpage</A>.</P>
  246. <P>The <A HREF="../../lib/Pod/perlfunc.html#item_my"><CODE>my</CODE></A> operator declares the listed variables to be lexically
  247. confined to the enclosing block, conditional (<CODE>if/unless/elsif/else</CODE>),
  248. loop (<CODE>for/foreach/while/until/continue</CODE>), subroutine, <A HREF="../../lib/Pod/perlfunc.html#item_eval"><CODE>eval</CODE></A>,
  249. or <CODE>do/require/use</CODE>'d file.  If more than one value is listed, the
  250. list must be placed in parentheses.  All listed elements must be
  251. legal lvalues.  Only alphanumeric identifiers may be lexically
  252. scoped--magical built-ins like <CODE>$/</CODE> must currently be <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local</CODE></A>ize
  253. with <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local</CODE></A> instead.</P>
  254. <P>Unlike dynamic variables created by the <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local</CODE></A> operator, lexical
  255. variables declared with <A HREF="../../lib/Pod/perlfunc.html#item_my"><CODE>my</CODE></A> are totally hidden from the outside
  256. world, including any called subroutines.  This is true if it's the
  257. same subroutine called from itself or elsewhere--every call gets
  258. its own copy.</P>
  259. <P>This doesn't mean that a <A HREF="../../lib/Pod/perlfunc.html#item_my"><CODE>my</CODE></A> variable declared in a statically
  260. enclosing lexical scope would be invisible.  Only dynamic scopes
  261. are cut off.   For example, the <CODE>bumpx()</CODE> function below has access
  262. to the lexical $x variable because both the <A HREF="../../lib/Pod/perlfunc.html#item_my"><CODE>my</CODE></A> and the <A HREF="../../lib/Pod/perlfunc.html#item_sub"><CODE>sub</CODE></A>
  263. occurred at the same scope, presumably file scope.</P>
  264. <PRE>
  265.     my $x = 10;
  266.     sub bumpx { $x++ }</PRE>
  267. <P>An <A HREF="../../lib/Pod/perlfunc.html#item_eval"><CODE>eval()</CODE></A>, however, can see lexical variables of the scope it is
  268. being evaluated in, so long as the names aren't hidden by declarations within
  269. the <A HREF="../../lib/Pod/perlfunc.html#item_eval"><CODE>eval()</CODE></A> itself.  See <A HREF="../../lib/Pod/perlref.html">the perlref manpage</A>.</P>
  270. <P>The parameter list to <A HREF="../../lib/Pod/perlfunc.html#item_my"><CODE>my()</CODE></A> may be assigned to if desired, which allows you
  271. to initialize your variables.  (If no initializer is given for a
  272. particular variable, it is created with the undefined value.)  Commonly
  273. this is used to name input parameters to a subroutine.  Examples:</P>
  274. <PRE>
  275.     $arg = "fred";        # "global" variable
  276.     $n = cube_root(27);
  277.     print "$arg thinks the root is $n\n";
  278.  fred thinks the root is 3</PRE>
  279. <PRE>
  280.     sub cube_root {
  281.         my $arg = shift;  # name doesn't matter
  282.         $arg **= 1/3;
  283.         return $arg;
  284.     }</PRE>
  285. <P>The <A HREF="../../lib/Pod/perlfunc.html#item_my"><CODE>my</CODE></A> is simply a modifier on something you might assign to.  So when
  286. you do assign to variables in its argument list, <A HREF="../../lib/Pod/perlfunc.html#item_my"><CODE>my</CODE></A> doesn't
  287. change whether those variables are viewed as a scalar or an array.  So</P>
  288. <PRE>
  289.     my ($foo) = <STDIN>;                # WRONG?
  290.     my @FOO = <STDIN>;</PRE>
  291. <P>both supply a list context to the right-hand side, while</P>
  292. <PRE>
  293.     my $foo = <STDIN>;</PRE>
  294. <P>supplies a scalar context.  But the following declares only one variable:</P>
  295. <PRE>
  296.     my $foo, $bar = 1;                  # WRONG</PRE>
  297. <P>That has the same effect as</P>
  298. <PRE>
  299.     my $foo;
  300.     $bar = 1;</PRE>
  301. <P>The declared variable is not introduced (is not visible) until after
  302. the current statement.  Thus,</P>
  303. <PRE>
  304.     my $x = $x;</PRE>
  305. <P>can be used to initialize a new $x with the value of the old $x, and
  306. the expression</P>
  307. <PRE>
  308.     my $x = 123 and $x == 123</PRE>
  309. <P>is false unless the old $x happened to have the value <CODE>123</CODE>.</P>
  310. <P>Lexical scopes of control structures are not bounded precisely by the
  311. braces that delimit their controlled blocks; control expressions are
  312. part of that scope, too.  Thus in the loop</P>
  313. <PRE>
  314.     while (my $line = <>) {
  315.         $line = lc $line;
  316.     } continue {
  317.         print $line;
  318.     }</PRE>
  319. <P>the scope of $line extends from its declaration throughout the rest of
  320. the loop construct (including the <A HREF="../../lib/Pod/perlfunc.html#item_continue"><CODE>continue</CODE></A> clause), but not beyond
  321. it.  Similarly, in the conditional</P>
  322. <PRE>
  323.     if ((my $answer = <STDIN>) =~ /^yes$/i) {
  324.         user_agrees();
  325.     } elsif ($answer =~ /^no$/i) {
  326.         user_disagrees();
  327.     } else {
  328.         chomp $answer;
  329.         die "'$answer' is neither 'yes' nor 'no'";
  330.     }</PRE>
  331. <P>the scope of $answer extends from its declaration through the rest
  332. of that conditional, including any <CODE>elsif</CODE> and <CODE>else</CODE> clauses, 
  333. but not beyond it.</P>
  334. <P>None of the foregoing text applies to <CODE>if/unless</CODE> or <CODE>while/until</CODE>
  335. modifiers appended to simple statements.  Such modifiers are not
  336. control structures and have no effect on scoping.</P>
  337. <P>The <CODE>foreach</CODE> loop defaults to scoping its index variable dynamically
  338. in the manner of <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local</CODE></A>.  However, if the index variable is
  339. prefixed with the keyword <A HREF="../../lib/Pod/perlfunc.html#item_my"><CODE>my</CODE></A>, or if there is already a lexical
  340. by that name in scope, then a new lexical is created instead.  Thus
  341. in the loop</P>
  342. <PRE>
  343.     for my $i (1, 2, 3) {
  344.         some_function();
  345.     }</PRE>
  346. <P>the scope of $i extends to the end of the loop, but not beyond it,
  347. rendering the value of $i inaccessible within <CODE>some_function()</CODE>.</P>
  348. <P>Some users may wish to encourage the use of lexically scoped variables.
  349. As an aid to catching implicit uses to package variables,
  350. which are always global, if you say</P>
  351. <PRE>
  352.     use strict 'vars';</PRE>
  353. <P>then any variable mentioned from there to the end of the enclosing
  354. block must either refer to a lexical variable, be predeclared via
  355. <A HREF="../../lib/Pod/perlfunc.html#item_our"><CODE>our</CODE></A> or <CODE>use vars</CODE>, or else must be fully qualified with the package name.
  356. A compilation error results otherwise.  An inner block may countermand
  357. this with <CODE>no strict 'vars'</CODE>.</P>
  358. <P>A <A HREF="../../lib/Pod/perlfunc.html#item_my"><CODE>my</CODE></A> has both a compile-time and a run-time effect.  At compile
  359. time, the compiler takes notice of it.  The principle usefulness
  360. of this is to quiet <CODE>use strict 'vars'</CODE>, but it is also essential
  361. for generation of closures as detailed in <A HREF="../../lib/Pod/perlref.html">the perlref manpage</A>.  Actual
  362. initialization is delayed until run time, though, so it gets executed
  363. at the appropriate time, such as each time through a loop, for
  364. example.</P>
  365. <P>Variables declared with <A HREF="../../lib/Pod/perlfunc.html#item_my"><CODE>my</CODE></A> are not part of any package and are therefore
  366. never fully qualified with the package name.  In particular, you're not
  367. allowed to try to make a package variable (or other global) lexical:</P>
  368. <PRE>
  369.     my $pack::var;      # ERROR!  Illegal syntax
  370.     my $_;              # also illegal (currently)</PRE>
  371. <P>In fact, a dynamic variable (also known as package or global variables)
  372. are still accessible using the fully qualified <CODE>::</CODE> notation even while a
  373. lexical of the same name is also visible:</P>
  374. <PRE>
  375.     package main;
  376.     local $x = 10;
  377.     my    $x = 20;
  378.     print "$x and $::x\n";</PRE>
  379. <P>That will print out <CODE>20</CODE> and <CODE>10</CODE>.</P>
  380. <P>You may declare <A HREF="../../lib/Pod/perlfunc.html#item_my"><CODE>my</CODE></A> variables at the outermost scope of a file
  381. to hide any such identifiers from the world outside that file.  This
  382. is similar in spirit to C's static variables when they are used at
  383. the file level.  To do this with a subroutine requires the use of
  384. a closure (an anonymous function that accesses enclosing lexicals).
  385. If you want to create a private subroutine that cannot be called
  386. from outside that block, it can declare a lexical variable containing
  387. an anonymous sub reference:</P>
  388. <PRE>
  389.     my $secret_version = '1.001-beta';
  390.     my $secret_sub = sub { print $secret_version };
  391.     &$secret_sub();</PRE>
  392. <P>As long as the reference is never returned by any function within the
  393. module, no outside module can see the subroutine, because its name is not in
  394. any package's symbol table.  Remember that it's not <EM>REALLY</EM> called
  395. <CODE>$some_pack::secret_version</CODE> or anything; it's just $secret_version,
  396. unqualified and unqualifiable.</P>
  397. <P>This does not work with object methods, however; all object methods
  398. have to be in the symbol table of some package to be found.  See
  399. <A HREF="../../lib/Pod/perlref.html#function templates">Function Templates in the perlref manpage</A> for something of a work-around to
  400. this.</P>
  401. <P>
  402. <H2><A NAME="persistent private variables">Persistent Private Variables</A></H2>
  403. <P>Just because a lexical variable is lexically (also called statically)
  404. scoped to its enclosing block, <A HREF="../../lib/Pod/perlfunc.html#item_eval"><CODE>eval</CODE></A>, or <A HREF="../../lib/Pod/perlfunc.html#item_do"><CODE>do</CODE></A> FILE, this doesn't mean that
  405. within a function it works like a C static.  It normally works more
  406. like a C auto, but with implicit garbage collection.</P>
  407. <P>Unlike local variables in C or C++, Perl's lexical variables don't
  408. necessarily get recycled just because their scope has exited.
  409. If something more permanent is still aware of the lexical, it will
  410. stick around.  So long as something else references a lexical, that
  411. lexical won't be freed--which is as it should be.  You wouldn't want
  412. memory being free until you were done using it, or kept around once you
  413. were done.  Automatic garbage collection takes care of this for you.</P>
  414. <P>This means that you can pass back or save away references to lexical
  415. variables, whereas to return a pointer to a C auto is a grave error.
  416. It also gives us a way to simulate C's function statics.  Here's a
  417. mechanism for giving a function private variables with both lexical
  418. scoping and a static lifetime.  If you do want to create something like
  419. C's static variables, just enclose the whole function in an extra block,
  420. and put the static variable outside the function but in the block.</P>
  421. <PRE>
  422.     {
  423.         my $secret_val = 0;
  424.         sub gimme_another {
  425.             return ++$secret_val;
  426.         }
  427.     }
  428.     # $secret_val now becomes unreachable by the outside
  429.     # world, but retains its value between calls to gimme_another</PRE>
  430. <P>If this function is being sourced in from a separate file
  431. via <A HREF="../../lib/Pod/perlfunc.html#item_require"><CODE>require</CODE></A> or <A HREF="../../lib/Pod/perlfunc.html#item_use"><CODE>use</CODE></A>, then this is probably just fine.  If it's
  432. all in the main program, you'll need to arrange for the <A HREF="../../lib/Pod/perlfunc.html#item_my"><CODE>my</CODE></A>
  433. to be executed early, either by putting the whole block above
  434. your main program, or more likely, placing merely a <CODE>BEGIN</CODE>
  435. sub around it to make sure it gets executed before your program
  436. starts to run:</P>
  437. <PRE>
  438.     sub BEGIN {
  439.         my $secret_val = 0;
  440.         sub gimme_another {
  441.             return ++$secret_val;
  442.         }
  443.     }</PRE>
  444. <P>See <A HREF="../../lib/Pod/perlmod.html#package constructors and destructors">Package Constructors and Destructors in the perlmod manpage</A> about the
  445. special triggered functions, <CODE>BEGIN</CODE>, <CODE>CHECK</CODE>, <CODE>INIT</CODE> and <CODE>END</CODE>.</P>
  446. <P>If declared at the outermost scope (the file scope), then lexicals
  447. work somewhat like C's file statics.  They are available to all
  448. functions in that same file declared below them, but are inaccessible
  449. from outside that file.  This strategy is sometimes used in modules
  450. to create private variables that the whole module can see.</P>
  451. <P>
  452. <H2><A NAME="temporary values via local()">Temporary Values via <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local()</CODE></A></A></H2>
  453. <P><STRONG>WARNING</STRONG>: In general, you should be using <A HREF="../../lib/Pod/perlfunc.html#item_my"><CODE>my</CODE></A> instead of <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local</CODE></A>, because
  454. it's faster and safer.  Exceptions to this include the global punctuation
  455. variables, filehandles and formats, and direct manipulation of the Perl
  456. symbol table itself.  Format variables often use <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local</CODE></A> though, as do
  457. other variables whose current value must be visible to called
  458. subroutines.</P>
  459. <P>Synopsis:</P>
  460. <PRE>
  461.     local $foo;                 # declare $foo dynamically local
  462.     local (@wid, %get);         # declare list of variables local
  463.     local $foo = "flurp";       # declare $foo dynamic, and init it
  464.     local @oof = @bar;          # declare @oof dynamic, and init it</PRE>
  465. <PRE>
  466.     local *FH;                  # localize $FH, @FH, %FH, &FH  ...
  467.     local *merlyn = *randal;    # now $merlyn is really $randal, plus
  468.                                 #     @merlyn is really @randal, etc
  469.     local *merlyn = 'randal';   # SAME THING: promote 'randal' to *randal
  470.     local *merlyn = \$randal;   # just alias $merlyn, not @merlyn etc</PRE>
  471. <P>A <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local</CODE></A> modifies its listed variables to be ``local'' to the
  472. enclosing block, <A HREF="../../lib/Pod/perlfunc.html#item_eval"><CODE>eval</CODE></A>, or <A HREF="../../lib/Pod/perlfunc.html#item_do"><CODE>do FILE</CODE></A>--and to <EM>any subroutine
  473. called from within that block</EM>.  A <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local</CODE></A> just gives temporary
  474. values to global (meaning package) variables.  It does <EM>not</EM> create
  475. a local variable.  This is known as dynamic scoping.  Lexical scoping
  476. is done with <A HREF="../../lib/Pod/perlfunc.html#item_my"><CODE>my</CODE></A>, which works more like C's auto declarations.</P>
  477. <P>If more than one variable is given to <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local</CODE></A>, they must be placed in
  478. parentheses.  All listed elements must be legal lvalues.  This operator works
  479. by saving the current values of those variables in its argument list on a
  480. hidden stack and restoring them upon exiting the block, subroutine, or
  481. eval.  This means that called subroutines can also reference the local
  482. variable, but not the global one.  The argument list may be assigned to if
  483. desired, which allows you to initialize your local variables.  (If no
  484. initializer is given for a particular variable, it is created with an
  485. undefined value.)  Commonly this is used to name the parameters to a
  486. subroutine.  Examples:</P>
  487. <PRE>
  488.     for $i ( 0 .. 9 ) {
  489.         $digits{$i} = $i;
  490.     }
  491.     # assume this function uses global %digits hash
  492.     parse_num();</PRE>
  493. <PRE>
  494.     # now temporarily add to %digits hash
  495.     if ($base12) {
  496.         # (NOTE: not claiming this is efficient!)
  497.         local %digits  = (%digits, 't' => 10, 'e' => 11);
  498.         parse_num();  # parse_num gets this new %digits!
  499.     }
  500.     # old %digits restored here</PRE>
  501. <P>Because <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local</CODE></A> is a run-time operator, it gets executed each time
  502. through a loop.  In releases of Perl previous to 5.0, this used more stack
  503. storage each time until the loop was exited.  Perl now reclaims the space
  504. each time through, but it's still more efficient to declare your variables
  505. outside the loop.</P>
  506. <P>A <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local</CODE></A> is simply a modifier on an lvalue expression.  When you assign to
  507. a <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local</CODE></A>ized variable, the <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local</CODE></A> doesn't change whether its list is viewed
  508. as a scalar or an array.  So</P>
  509. <PRE>
  510.     local($foo) = <STDIN>;
  511.     local @FOO = <STDIN>;</PRE>
  512. <P>both supply a list context to the right-hand side, while</P>
  513. <PRE>
  514.     local $foo = <STDIN>;</PRE>
  515. <P>supplies a scalar context.</P>
  516. <P>A note about <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local()</CODE></A> and composite types is in order.  Something
  517. like <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local(%foo)</CODE></A> works by temporarily placing a brand new hash in
  518. the symbol table.  The old hash is left alone, but is hidden ``behind''
  519. the new one.</P>
  520. <P>This means the old variable is completely invisible via the symbol
  521. table (i.e. the hash entry in the <CODE>*foo</CODE> typeglob) for the duration
  522. of the dynamic scope within which the <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local()</CODE></A> was seen.  This
  523. has the effect of allowing one to temporarily occlude any magic on
  524. composite types.  For instance, this will briefly alter a tied
  525. hash to some other implementation:</P>
  526. <PRE>
  527.     tie %ahash, 'APackage';
  528.     [...]
  529.     {
  530.        local %ahash;
  531.        tie %ahash, 'BPackage';
  532.        [..called code will see %ahash tied to 'BPackage'..]
  533.        {
  534.           local %ahash;
  535.           [..%ahash is a normal (untied) hash here..]
  536.        }
  537.     }
  538.     [..%ahash back to its initial tied self again..]</PRE>
  539. <P>As another example, a custom implementation of <CODE>%ENV</CODE> might look
  540. like this:</P>
  541. <PRE>
  542.     {
  543.         local %ENV;
  544.         tie %ENV, 'MyOwnEnv';
  545.         [..do your own fancy %ENV manipulation here..]
  546.     }
  547.     [..normal %ENV behavior here..]</PRE>
  548. <P>It's also worth taking a moment to explain what happens when you
  549. <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local</CODE></A>ize a member of a composite type (i.e. an array or hash element).
  550. In this case, the element is <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local</CODE></A>ized <EM>by name</EM>. This means that
  551. when the scope of the <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local()</CODE></A> ends, the saved value will be
  552. restored to the hash element whose key was named in the <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local()</CODE></A>, or
  553. the array element whose index was named in the <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local()</CODE></A>.  If that
  554. element was deleted while the <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local()</CODE></A> was in effect (e.g. by a
  555. <A HREF="../../lib/Pod/perlfunc.html#item_delete"><CODE>delete()</CODE></A> from a hash or a <A HREF="../../lib/Pod/perlfunc.html#item_shift"><CODE>shift()</CODE></A> of an array), it will spring
  556. back into existence, possibly extending an array and filling in the
  557. skipped elements with <A HREF="../../lib/Pod/perlfunc.html#item_undef"><CODE>undef</CODE></A>.  For instance, if you say</P>
  558. <PRE>
  559.     %hash = ( 'This' => 'is', 'a' => 'test' );
  560.     @ary  = ( 0..5 );
  561.     {
  562.          local($ary[5]) = 6;
  563.          local($hash{'a'}) = 'drill';
  564.          while (my $e = pop(@ary)) {
  565.              print "$e . . .\n";
  566.              last unless $e > 3;
  567.          }
  568.          if (@ary) {
  569.              $hash{'only a'} = 'test';
  570.              delete $hash{'a'};
  571.          }
  572.     }
  573.     print join(' ', map { "$_ $hash{$_}" } sort keys %hash),".\n";
  574.     print "The array has ",scalar(@ary)," elements: ",
  575.           join(', ', map { defined $_ ? $_ : 'undef' } @ary),"\n";</PRE>
  576. <P>Perl will print</P>
  577. <PRE>
  578.     6 . . .
  579.     4 . . .
  580.     3 . . .
  581.     This is a test only a test.
  582.     The array has 6 elements: 0, 1, 2, undef, undef, 5</PRE>
  583. <P>The behavior of <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local()</CODE></A> on non-existent members of composite
  584. types is subject to change in future.</P>
  585. <P>
  586. <H2><A NAME="lvalue subroutines">Lvalue subroutines</A></H2>
  587. <P><STRONG>WARNING</STRONG>: Lvalue subroutines are still experimental and the implementation
  588. may change in future versions of Perl.</P>
  589. <P>It is possible to return a modifiable value from a subroutine.
  590. To do this, you have to declare the subroutine to return an lvalue.</P>
  591. <PRE>
  592.     my $val;
  593.     sub canmod : lvalue {
  594.         $val;
  595.     }
  596.     sub nomod {
  597.         $val;
  598.     }</PRE>
  599. <PRE>
  600.     canmod() = 5;   # assigns to $val
  601.     nomod()  = 5;   # ERROR</PRE>
  602. <P>The scalar/list context for the subroutine and for the right-hand
  603. side of assignment is determined as if the subroutine call is replaced
  604. by a scalar. For example, consider:</P>
  605. <PRE>
  606.     data(2,3) = get_data(3,4);</PRE>
  607. <P>Both subroutines here are called in a scalar context, while in:</P>
  608. <PRE>
  609.     (data(2,3)) = get_data(3,4);</PRE>
  610. <P>and in:</P>
  611. <PRE>
  612.     (data(2),data(3)) = get_data(3,4);</PRE>
  613. <P>all the subroutines are called in a list context.</P>
  614. <P>The current implementation does not allow arrays and hashes to be
  615. returned from lvalue subroutines directly.  You may return a
  616. reference instead.  This restriction may be lifted in future.</P>
  617. <P>
  618. <H2><A NAME="passing symbol table entries (typeglobs)">Passing Symbol Table Entries (typeglobs)</A></H2>
  619. <P><STRONG>WARNING</STRONG>: The mechanism described in this section was originally
  620. the only way to simulate pass-by-reference in older versions of
  621. Perl.  While it still works fine in modern versions, the new reference
  622. mechanism is generally easier to work with.  See below.</P>
  623. <P>Sometimes you don't want to pass the value of an array to a subroutine
  624. but rather the name of it, so that the subroutine can modify the global
  625. copy of it rather than working with a local copy.  In perl you can
  626. refer to all objects of a particular name by prefixing the name
  627. with a star: <CODE>*foo</CODE>.  This is often known as a ``typeglob'', because the
  628. star on the front can be thought of as a wildcard match for all the
  629. funny prefix characters on variables and subroutines and such.</P>
  630. <P>When evaluated, the typeglob produces a scalar value that represents
  631. all the objects of that name, including any filehandle, format, or
  632. subroutine.  When assigned to, it causes the name mentioned to refer to
  633. whatever <CODE>*</CODE> value was assigned to it.  Example:</P>
  634. <PRE>
  635.     sub doubleary {
  636.         local(*someary) = @_;
  637.         foreach $elem (@someary) {
  638.             $elem *= 2;
  639.         }
  640.     }
  641.     doubleary(*foo);
  642.     doubleary(*bar);</PRE>
  643. <P>Scalars are already passed by reference, so you can modify
  644. scalar arguments without using this mechanism by referring explicitly
  645. to <CODE>$_[0]</CODE> etc.  You can modify all the elements of an array by passing
  646. all the elements as scalars, but you have to use the <CODE>*</CODE> mechanism (or
  647. the equivalent reference mechanism) to <A HREF="../../lib/Pod/perlfunc.html#item_push"><CODE>push</CODE></A>, <A HREF="../../lib/Pod/perlfunc.html#item_pop"><CODE>pop</CODE></A>, or change the size of
  648. an array.  It will certainly be faster to pass the typeglob (or reference).</P>
  649. <P>Even if you don't want to modify an array, this mechanism is useful for
  650. passing multiple arrays in a single LIST, because normally the LIST
  651. mechanism will merge all the array values so that you can't extract out
  652. the individual arrays.  For more on typeglobs, see
  653. <A HREF="../../lib/Pod/perldata.html#typeglobs and filehandles">Typeglobs and Filehandles in the perldata manpage</A>.</P>
  654. <P>
  655. <H2><A NAME="when to still use local()">When to Still Use <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local()</CODE></A></A></H2>
  656. <P>Despite the existence of <A HREF="../../lib/Pod/perlfunc.html#item_my"><CODE>my</CODE></A>, there are still three places where the
  657. <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local</CODE></A> operator still shines.  In fact, in these three places, you
  658. <EM>must</EM> use <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local</CODE></A> instead of <A HREF="../../lib/Pod/perlfunc.html#item_my"><CODE>my</CODE></A>.</P>
  659. <OL>
  660. <LI><STRONG><A NAME="item_You_need_to_give_a_global_variable_a_temporary_val">You need to give a global variable a temporary value, especially $_.</A></STRONG><BR>
  661.  
  662. The global variables, like <CODE>@ARGV</CODE> or the punctuation variables, must be 
  663. <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local</CODE></A>ized with <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local()</CODE></A>.  This block reads in <EM>/etc/motd</EM>, and splits
  664. it up into chunks separated by lines of equal signs, which are placed
  665. in <CODE>@Fields</CODE>.
  666. <PRE>
  667.     {
  668.         local @ARGV = ("/etc/motd");
  669.         local $/ = undef;
  670.         local $_ = <>;  
  671.         @Fields = split /^\s*=+\s*$/;
  672.     }</PRE>
  673. <P>It particular, it's important to <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local</CODE></A>ize $_ in any routine that assigns
  674. to it.  Look out for implicit assignments in <CODE>while</CODE> conditionals.</P>
  675. <P></P>
  676. <LI><STRONG><A NAME="item_You_need_to_create_a_local_file_or_directory_handl">You need to create a local file or directory handle or a local function.</A></STRONG><BR>
  677.  
  678. A function that needs a filehandle of its own must use
  679. <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local()</CODE></A> on a complete typeglob.   This can be used to create new symbol
  680. table entries:
  681. <PRE>
  682.     sub ioqueue {
  683.         local  (*READER, *WRITER);    # not my!
  684.         pipe    (READER,  WRITER);    or die "pipe: $!";
  685.         return (*READER, *WRITER);
  686.     }
  687.     ($head, $tail) = ioqueue();</PRE>
  688. <P>See the Symbol module for a way to create anonymous symbol table
  689. entries.</P>
  690. <P>Because assignment of a reference to a typeglob creates an alias, this
  691. can be used to create what is effectively a local function, or at least,
  692. a local alias.</P>
  693. <PRE>
  694.     {
  695.         local *grow = \&shrink; # only until this block exists
  696.         grow();                 # really calls shrink()
  697.         move();                 # if move() grow()s, it shrink()s too
  698.     }
  699.     grow();                     # get the real grow() again</PRE>
  700. <P>See <A HREF="../../lib/Pod/perlref.html#function templates">Function Templates in the perlref manpage</A> for more about manipulating
  701. functions by name in this way.</P>
  702. <P></P>
  703. <LI><STRONG><A NAME="item_You_want_to_temporarily_change_just_one_element_of">You want to temporarily change just one element of an array or hash.</A></STRONG><BR>
  704.  
  705. You can <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local</CODE></A>ize just one element of an aggregate.  Usually this
  706. is done on dynamics:
  707. <PRE>
  708.     {
  709.         local $SIG{INT} = 'IGNORE';
  710.         funct();                            # uninterruptible
  711.     } 
  712.     # interruptibility automatically restored here</PRE>
  713. <P>But it also works on lexically declared aggregates.  Prior to 5.005,
  714. this operation could on occasion misbehave.</P>
  715. <P></P></OL>
  716. <P>
  717. <H2><A NAME="pass by reference">Pass by Reference</A></H2>
  718. <P>If you want to pass more than one array or hash into a function--or
  719. return them from it--and have them maintain their integrity, then
  720. you're going to have to use an explicit pass-by-reference.  Before you
  721. do that, you need to understand references as detailed in <A HREF="../../lib/Pod/perlref.html">the perlref manpage</A>.
  722. This section may not make much sense to you otherwise.</P>
  723. <P>Here are a few simple examples.  First, let's pass in several arrays
  724. to a function and have it <A HREF="../../lib/Pod/perlfunc.html#item_pop"><CODE>pop</CODE></A> all of then, returning a new list
  725. of all their former last elements:</P>
  726. <PRE>
  727.     @tailings = popmany ( \@a, \@b, \@c, \@d );</PRE>
  728. <PRE>
  729.     sub popmany {
  730.         my $aref;
  731.         my @retlist = ();
  732.         foreach $aref ( @_ ) {
  733.             push @retlist, pop @$aref;
  734.         }
  735.         return @retlist;
  736.     }</PRE>
  737. <P>Here's how you might write a function that returns a
  738. list of keys occurring in all the hashes passed to it:</P>
  739. <PRE>
  740.     @common = inter( \%foo, \%bar, \%joe );
  741.     sub inter {
  742.         my ($k, $href, %seen); # locals
  743.         foreach $href (@_) {
  744.             while ( $k = each %$href ) {
  745.                 $seen{$k}++;
  746.             }
  747.         }
  748.         return grep { $seen{$_} == @_ } keys %seen;
  749.     }</PRE>
  750. <P>So far, we're using just the normal list return mechanism.
  751. What happens if you want to pass or return a hash?  Well,
  752. if you're using only one of them, or you don't mind them
  753. concatenating, then the normal calling convention is ok, although
  754. a little expensive.</P>
  755. <P>Where people get into trouble is here:</P>
  756. <PRE>
  757.     (@a, @b) = func(@c, @d);
  758. or
  759.     (%a, %b) = func(%c, %d);</PRE>
  760. <P>That syntax simply won't work.  It sets just <CODE>@a</CODE> or <CODE>%a</CODE> and
  761. clears the <CODE>@b</CODE> or <CODE>%b</CODE>.  Plus the function didn't get passed
  762. into two separate arrays or hashes: it got one long list in <CODE>@_</CODE>,
  763. as always.</P>
  764. <P>If you can arrange for everyone to deal with this through references, it's
  765. cleaner code, although not so nice to look at.  Here's a function that
  766. takes two array references as arguments, returning the two array elements
  767. in order of how many elements they have in them:</P>
  768. <PRE>
  769.     ($aref, $bref) = func(\@c, \@d);
  770.     print "@$aref has more than @$bref\n";
  771.     sub func {
  772.         my ($cref, $dref) = @_;
  773.         if (@$cref > @$dref) {
  774.             return ($cref, $dref);
  775.         } else {
  776.             return ($dref, $cref);
  777.         }
  778.     }</PRE>
  779. <P>It turns out that you can actually do this also:</P>
  780. <PRE>
  781.     (*a, *b) = func(\@c, \@d);
  782.     print "@a has more than @b\n";
  783.     sub func {
  784.         local (*c, *d) = @_;
  785.         if (@c > @d) {
  786.             return (\@c, \@d);
  787.         } else {
  788.             return (\@d, \@c);
  789.         }
  790.     }</PRE>
  791. <P>Here we're using the typeglobs to do symbol table aliasing.  It's
  792. a tad subtle, though, and also won't work if you're using <A HREF="../../lib/Pod/perlfunc.html#item_my"><CODE>my</CODE></A>
  793. variables, because only globals (even in disguise as <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local</CODE></A>s)
  794. are in the symbol table.</P>
  795. <P>If you're passing around filehandles, you could usually just use the bare
  796. typeglob, like <CODE>*STDOUT</CODE>, but typeglobs references work, too.
  797. For example:</P>
  798. <PRE>
  799.     splutter(\*STDOUT);
  800.     sub splutter {
  801.         my $fh = shift;
  802.         print $fh "her um well a hmmm\n";
  803.     }</PRE>
  804. <PRE>
  805.     $rec = get_rec(\*STDIN);
  806.     sub get_rec {
  807.         my $fh = shift;
  808.         return scalar <$fh>;
  809.     }</PRE>
  810. <P>If you're planning on generating new filehandles, you could do this.
  811. Notice to pass back just the bare *FH, not its reference.</P>
  812. <PRE>
  813.     sub openit {
  814.         my $path = shift;
  815.         local *FH;
  816.         return open (FH, $path) ? *FH : undef;
  817.     }</PRE>
  818. <P>
  819. <H2><A NAME="prototypes">Prototypes</A></H2>
  820. <P>Perl supports a very limited kind of compile-time argument checking
  821. using function prototyping.  If you declare</P>
  822. <PRE>
  823.     sub mypush (\@@)</PRE>
  824. <P>then <CODE>mypush()</CODE> takes arguments exactly like <A HREF="../../lib/Pod/perlfunc.html#item_push"><CODE>push()</CODE></A> does.  The
  825. function declaration must be visible at compile time.  The prototype
  826. affects only interpretation of new-style calls to the function,
  827. where new-style is defined as not using the <CODE>&</CODE> character.  In
  828. other words, if you call it like a built-in function, then it behaves
  829. like a built-in function.  If you call it like an old-fashioned
  830. subroutine, then it behaves like an old-fashioned subroutine.  It
  831. naturally falls out from this rule that prototypes have no influence
  832. on subroutine references like <CODE>\&foo</CODE> or on indirect subroutine
  833. calls like <CODE>&{$subref}</CODE> or <CODE>$subref->()</CODE>.</P>
  834. <P>Method calls are not influenced by prototypes either, because the
  835. function to be called is indeterminate at compile time, since
  836. the exact code called depends on inheritance.</P>
  837. <P>Because the intent of this feature is primarily to let you define
  838. subroutines that work like built-in functions, here are prototypes
  839. for some other functions that parse almost exactly like the
  840. corresponding built-in.</P>
  841. <PRE>
  842.     Declared as                 Called as</PRE>
  843. <PRE>
  844.     sub mylink ($$)          mylink $old, $new
  845.     sub myvec ($$$)          myvec $var, $offset, 1
  846.     sub myindex ($$;$)       myindex &getstring, "substr"
  847.     sub mysyswrite ($$$;$)   mysyswrite $buf, 0, length($buf) - $off, $off
  848.     sub myreverse (@)        myreverse $a, $b, $c
  849.     sub myjoin ($@)          myjoin ":", $a, $b, $c
  850.     sub mypop (\@)           mypop @array
  851.     sub mysplice (\@$$@)     mysplice @array, @array, 0, @pushme
  852.     sub mykeys (\%)          mykeys %{$hashref}
  853.     sub myopen (*;$)         myopen HANDLE, $name
  854.     sub mypipe (**)          mypipe READHANDLE, WRITEHANDLE
  855.     sub mygrep (&@)          mygrep { /foo/ } $a, $b, $c
  856.     sub myrand ($)           myrand 42
  857.     sub mytime ()            mytime</PRE>
  858. <P>Any backslashed prototype character represents an actual argument
  859. that absolutely must start with that character.  The value passed
  860. as part of <CODE>@_</CODE> will be a reference to the actual argument given
  861. in the subroutine call, obtained by applying <CODE>\</CODE> to that argument.</P>
  862. <P>Unbackslashed prototype characters have special meanings.  Any
  863. unbackslashed <CODE>@</CODE> or <CODE>%</CODE> eats all remaining arguments, and forces
  864. list context.  An argument represented by <CODE>$</CODE> forces scalar context.  An
  865. <CODE>&</CODE> requires an anonymous subroutine, which, if passed as the first
  866. argument, does not require the <A HREF="../../lib/Pod/perlfunc.html#item_sub"><CODE>sub</CODE></A> keyword or a subsequent comma.</P>
  867. <P>A <CODE>*</CODE> allows the subroutine to accept a bareword, constant, scalar expression,
  868. typeglob, or a reference to a typeglob in that slot.  The value will be
  869. available to the subroutine either as a simple scalar, or (in the latter
  870. two cases) as a reference to the typeglob.  If you wish to always convert
  871. such arguments to a typeglob reference, use Symbol::qualify_to_ref() as
  872. follows:</P>
  873. <PRE>
  874.     use Symbol 'qualify_to_ref';</PRE>
  875. <PRE>
  876.     sub foo (*) {
  877.         my $fh = qualify_to_ref(shift, caller);
  878.         ...
  879.     }</PRE>
  880. <P>A semicolon separates mandatory arguments from optional arguments.
  881. It is redundant before <CODE>@</CODE> or <CODE>%</CODE>, which gobble up everything else.</P>
  882. <P>Note how the last three examples in the table above are treated
  883. specially by the parser.  <CODE>mygrep()</CODE> is parsed as a true list
  884. operator, <CODE>myrand()</CODE> is parsed as a true unary operator with unary
  885. precedence the same as <A HREF="../../lib/Pod/perlfunc.html#item_rand"><CODE>rand()</CODE></A>, and <CODE>mytime()</CODE> is truly without
  886. arguments, just like <A HREF="../../lib/Pod/perlfunc.html#item_time"><CODE>time()</CODE></A>.  That is, if you say</P>
  887. <PRE>
  888.     mytime +2;</PRE>
  889. <P>you'll get <CODE>mytime() + 2</CODE>, not <CODE>mytime(2)</CODE>, which is how it would be parsed
  890. without a prototype.</P>
  891. <P>The interesting thing about <CODE>&</CODE> is that you can generate new syntax with it,
  892. provided it's in the initial position:</P>
  893. <PRE>
  894.     sub try (&@) {
  895.         my($try,$catch) = @_;
  896.         eval { &$try };
  897.         if ($@) {
  898.             local $_ = $@;
  899.             &$catch;
  900.         }
  901.     }
  902.     sub catch (&) { $_[0] }</PRE>
  903. <PRE>
  904.     try {
  905.         die "phooey";
  906.     } catch {
  907.         /phooey/ and print "unphooey\n";
  908.     };</PRE>
  909. <P>That prints <CODE>"unphooey"</CODE>.  (Yes, there are still unresolved
  910. issues having to do with visibility of <CODE>@_</CODE>.  I'm ignoring that
  911. question for the moment.  (But note that if we make <CODE>@_</CODE> lexically
  912. scoped, those anonymous subroutines can act like closures... (Gee,
  913. is this sounding a little Lispish?  (Never mind.))))</P>
  914. <P>And here's a reimplementation of the Perl <A HREF="../../lib/Pod/perlfunc.html#item_grep"><CODE>grep</CODE></A> operator:</P>
  915. <PRE>
  916.     sub mygrep (&@) {
  917.         my $code = shift;
  918.         my @result;
  919.         foreach $_ (@_) {
  920.             push(@result, $_) if &$code;
  921.         }
  922.         @result;
  923.     }</PRE>
  924. <P>Some folks would prefer full alphanumeric prototypes.  Alphanumerics have
  925. been intentionally left out of prototypes for the express purpose of
  926. someday in the future adding named, formal parameters.  The current
  927. mechanism's main goal is to let module writers provide better diagnostics
  928. for module users.  Larry feels the notation quite understandable to Perl
  929. programmers, and that it will not intrude greatly upon the meat of the
  930. module, nor make it harder to read.  The line noise is visually
  931. encapsulated into a small pill that's easy to swallow.</P>
  932. <P>It's probably best to prototype new functions, not retrofit prototyping
  933. into older ones.  That's because you must be especially careful about
  934. silent impositions of differing list versus scalar contexts.  For example,
  935. if you decide that a function should take just one parameter, like this:</P>
  936. <PRE>
  937.     sub func ($) {
  938.         my $n = shift;
  939.         print "you gave me $n\n";
  940.     }</PRE>
  941. <P>and someone has been calling it with an array or expression
  942. returning a list:</P>
  943. <PRE>
  944.     func(@foo);
  945.     func( split /:/ );</PRE>
  946. <P>Then you've just supplied an automatic <A HREF="../../lib/Pod/perlfunc.html#item_scalar"><CODE>scalar</CODE></A> in front of their
  947. argument, which can be more than a bit surprising.  The old <CODE>@foo</CODE>
  948. which used to hold one thing doesn't get passed in.  Instead,
  949. <CODE>func()</CODE> now gets passed in a <CODE>1</CODE>; that is, the number of elements
  950. in <CODE>@foo</CODE>.  And the <A HREF="../../lib/Pod/perlfunc.html#item_split"><CODE>split</CODE></A> gets called in scalar context so it
  951. starts scribbling on your <CODE>@_</CODE> parameter list.  Ouch!</P>
  952. <P>This is all very powerful, of course, and should be used only in moderation
  953. to make the world a better place.</P>
  954. <P>
  955. <H2><A NAME="constant functions">Constant Functions</A></H2>
  956. <P>Functions with a prototype of <CODE>()</CODE> are potential candidates for
  957. inlining.  If the result after optimization and constant folding
  958. is either a constant or a lexically-scoped scalar which has no other
  959. references, then it will be used in place of function calls made
  960. without <CODE>&</CODE>.  Calls made using <CODE>&</CODE> are never inlined.  (See
  961. <EM>constant.pm</EM> for an easy way to declare most constants.)</P>
  962. <P>The following functions would all be inlined:</P>
  963. <PRE>
  964.     sub pi ()           { 3.14159 }             # Not exact, but close.
  965.     sub PI ()           { 4 * atan2 1, 1 }      # As good as it gets,
  966.                                                 # and it's inlined, too!
  967.     sub ST_DEV ()       { 0 }
  968.     sub ST_INO ()       { 1 }</PRE>
  969. <PRE>
  970.     sub FLAG_FOO ()     { 1 << 8 }
  971.     sub FLAG_BAR ()     { 1 << 9 }
  972.     sub FLAG_MASK ()    { FLAG_FOO | FLAG_BAR }</PRE>
  973. <PRE>
  974.     sub OPT_BAZ ()      { not (0x1B58 & FLAG_MASK) }
  975.     sub BAZ_VAL () {
  976.         if (OPT_BAZ) {
  977.             return 23;
  978.         }
  979.         else {
  980.             return 42;
  981.         }
  982.     }</PRE>
  983. <PRE>
  984.     sub N () { int(BAZ_VAL) / 3 }
  985.     BEGIN {
  986.         my $prod = 1;
  987.         for (1..N) { $prod *= $_ }
  988.         sub N_FACTORIAL () { $prod }
  989.     }</PRE>
  990. <P>If you redefine a subroutine that was eligible for inlining, you'll get
  991. a mandatory warning.  (You can use this warning to tell whether or not a
  992. particular subroutine is considered constant.)  The warning is
  993. considered severe enough not to be optional because previously compiled
  994. invocations of the function will still be using the old value of the
  995. function.  If you need to be able to redefine the subroutine, you need to
  996. ensure that it isn't inlined, either by dropping the <CODE>()</CODE> prototype
  997. (which changes calling semantics, so beware) or by thwarting the
  998. inlining mechanism in some other way, such as</P>
  999. <PRE>
  1000.     sub not_inlined () {
  1001.         23 if $];
  1002.     }</PRE>
  1003. <P>
  1004. <H2><A NAME="overriding builtin functions">Overriding Built-in Functions</A></H2>
  1005. <P>Many built-in functions may be overridden, though this should be tried
  1006. only occasionally and for good reason.  Typically this might be
  1007. done by a package attempting to emulate missing built-in functionality
  1008. on a non-Unix system.</P>
  1009. <P>Overriding may be done only by importing the name from a
  1010. module--ordinary predeclaration isn't good enough.  However, the
  1011. <CODE>use subs</CODE> pragma lets you, in effect, predeclare subs
  1012. via the import syntax, and these names may then override built-in ones:</P>
  1013. <PRE>
  1014.     use subs 'chdir', 'chroot', 'chmod', 'chown';
  1015.     chdir $somewhere;
  1016.     sub chdir { ... }</PRE>
  1017. <P>To unambiguously refer to the built-in form, precede the
  1018. built-in name with the special package qualifier <CODE>CORE::</CODE>.  For example,
  1019. saying <A HREF="../../lib/Pod/perlfunc.html#item_open"><CODE>CORE::open()</CODE></A> always refers to the built-in <A HREF="../../lib/Pod/perlfunc.html#item_open"><CODE>open()</CODE></A>, even
  1020. if the current package has imported some other subroutine called
  1021. <A HREF="../../lib/Pod/perlfunc.html#item_open"><CODE>&open()</CODE></A> from elsewhere.  Even though it looks like a regular
  1022. function call, it isn't: you can't take a reference to it, such as
  1023. the incorrect <CODE>\&CORE::open</CODE> might appear to produce.</P>
  1024. <P>Library modules should not in general export built-in names like <A HREF="../../lib/Pod/perlfunc.html#item_open"><CODE>open</CODE></A>
  1025. or <A HREF="../../lib/Pod/perlfunc.html#item_chdir"><CODE>chdir</CODE></A> as part of their default <CODE>@EXPORT</CODE> list, because these may
  1026. sneak into someone else's namespace and change the semantics unexpectedly.
  1027. Instead, if the module adds that name to <CODE>@EXPORT_OK</CODE>, then it's
  1028. possible for a user to import the name explicitly, but not implicitly.
  1029. That is, they could say</P>
  1030. <PRE>
  1031.     use Module 'open';</PRE>
  1032. <P>and it would import the <A HREF="../../lib/Pod/perlfunc.html#item_open"><CODE>open</CODE></A> override.  But if they said</P>
  1033. <PRE>
  1034.     use Module;</PRE>
  1035. <P>they would get the default imports without overrides.</P>
  1036. <P>The foregoing mechanism for overriding built-in is restricted, quite
  1037. deliberately, to the package that requests the import.  There is a second
  1038. method that is sometimes applicable when you wish to override a built-in
  1039. everywhere, without regard to namespace boundaries.  This is achieved by
  1040. importing a sub into the special namespace <CODE>CORE::GLOBAL::</CODE>.  Here is an
  1041. example that quite brazenly replaces the <A HREF="../../lib/Pod/perlfunc.html#item_glob"><CODE>glob</CODE></A> operator with something
  1042. that understands regular expressions.</P>
  1043. <PRE>
  1044.     package REGlob;
  1045.     require Exporter;
  1046.     @ISA = 'Exporter';
  1047.     @EXPORT_OK = 'glob';</PRE>
  1048. <PRE>
  1049.     sub import {
  1050.         my $pkg = shift;
  1051.         return unless @_;
  1052.         my $sym = shift;
  1053.         my $where = ($sym =~ s/^GLOBAL_// ? 'CORE::GLOBAL' : caller(0));
  1054.         $pkg->export($where, $sym, @_);
  1055.     }</PRE>
  1056. <PRE>
  1057.     sub glob {
  1058.         my $pat = shift;
  1059.         my @got;
  1060.         local *D;
  1061.         if (opendir D, '.') { 
  1062.             @got = grep /$pat/, readdir D; 
  1063.             closedir D;   
  1064.         }
  1065.         return @got;
  1066.     }
  1067.     1;</PRE>
  1068. <P>And here's how it could be (ab)used:</P>
  1069. <PRE>
  1070.     #use REGlob 'GLOBAL_glob';      # override glob() in ALL namespaces
  1071.     package Foo;
  1072.     use REGlob 'glob';              # override glob() in Foo:: only
  1073.     print for <^[a-z_]+\.pm\$>;     # show all pragmatic modules</PRE>
  1074. <P>The initial comment shows a contrived, even dangerous example.
  1075. By overriding <A HREF="../../lib/Pod/perlfunc.html#item_glob"><CODE>glob</CODE></A> globally, you would be forcing the new (and
  1076. subversive) behavior for the <A HREF="../../lib/Pod/perlfunc.html#item_glob"><CODE>glob</CODE></A> operator for <EM>every</EM> namespace,
  1077. without the complete cognizance or cooperation of the modules that own
  1078. those namespaces.  Naturally, this should be done with extreme caution--if
  1079. it must be done at all.</P>
  1080. <P>The <CODE>REGlob</CODE> example above does not implement all the support needed to
  1081. cleanly override perl's <A HREF="../../lib/Pod/perlfunc.html#item_glob"><CODE>glob</CODE></A> operator.  The built-in <A HREF="../../lib/Pod/perlfunc.html#item_glob"><CODE>glob</CODE></A> has
  1082. different behaviors depending on whether it appears in a scalar or list
  1083. context, but our <CODE>REGlob</CODE> doesn't.  Indeed, many perl built-in have such
  1084. context sensitive behaviors, and these must be adequately supported by
  1085. a properly written override.  For a fully functional example of overriding
  1086. <A HREF="../../lib/Pod/perlfunc.html#item_glob"><CODE>glob</CODE></A>, study the implementation of <CODE>File::DosGlob</CODE> in the standard
  1087. library.</P>
  1088. <P>
  1089. <H2><A NAME="autoloading">Autoloading</A></H2>
  1090. <P>If you call a subroutine that is undefined, you would ordinarily
  1091. get an immediate, fatal error complaining that the subroutine doesn't
  1092. exist.  (Likewise for subroutines being used as methods, when the
  1093. method doesn't exist in any base class of the class's package.)
  1094. However, if an <CODE>AUTOLOAD</CODE> subroutine is defined in the package or
  1095. packages used to locate the original subroutine, then that
  1096. <CODE>AUTOLOAD</CODE> subroutine is called with the arguments that would have
  1097. been passed to the original subroutine.  The fully qualified name
  1098. of the original subroutine magically appears in the global $AUTOLOAD
  1099. variable of the same package as the <CODE>AUTOLOAD</CODE> routine.  The name
  1100. is not passed as an ordinary argument because, er, well, just
  1101. because, that's why...</P>
  1102. <P>Many <CODE>AUTOLOAD</CODE> routines load in a definition for the requested
  1103. subroutine using eval(), then execute that subroutine using a special
  1104. form of <A HREF="../../lib/Pod/perlfunc.html#item_goto"><CODE>goto()</CODE></A> that erases the stack frame of the <CODE>AUTOLOAD</CODE> routine
  1105. without a trace.  (See the source to the standard module documented
  1106. in <A HREF="../../lib/AutoLoader.html">the AutoLoader manpage</A>, for example.)  But an <CODE>AUTOLOAD</CODE> routine can
  1107. also just emulate the routine and never define it.   For example,
  1108. let's pretend that a function that wasn't defined should just invoke
  1109. <A HREF="../../lib/Pod/perlfunc.html#item_system"><CODE>system</CODE></A> with those arguments.  All you'd do is:</P>
  1110. <PRE>
  1111.     sub AUTOLOAD {
  1112.         my $program = $AUTOLOAD;
  1113.         $program =~ s/.*:://;
  1114.         system($program, @_);
  1115.     }
  1116.     date();
  1117.     who('am', 'i');
  1118.     ls('-l');</PRE>
  1119. <P>In fact, if you predeclare functions you want to call that way, you don't
  1120. even need parentheses:</P>
  1121. <PRE>
  1122.     use subs qw(date who ls);
  1123.     date;
  1124.     who "am", "i";
  1125.     ls -l;</PRE>
  1126. <P>A more complete example of this is the standard Shell module, which
  1127. can treat undefined subroutine calls as calls to external programs.</P>
  1128. <P>Mechanisms are available to help modules writers split their modules
  1129. into autoloadable files.  See the standard AutoLoader module
  1130. described in <A HREF="../../lib/AutoLoader.html">the AutoLoader manpage</A> and in <A HREF="../../lib/AutoSplit.html">the AutoSplit manpage</A>, the standard
  1131. SelfLoader modules in <A HREF="../../lib/SelfLoader.html">the SelfLoader manpage</A>, and the document on adding C
  1132. functions to Perl code in <A HREF="../../lib/Pod/perlxs.html">the perlxs manpage</A>.</P>
  1133. <P>
  1134. <H2><A NAME="subroutine attributes">Subroutine Attributes</A></H2>
  1135. <P>A subroutine declaration or definition may have a list of attributes
  1136. associated with it.  If such an attribute list is present, it is
  1137. broken up at space or colon boundaries and treated as though a
  1138. <CODE>use attributes</CODE> had been seen.  See <A HREF="../../lib/attributes.html">the attributes manpage</A> for details
  1139. about what attributes are currently supported.
  1140. Unlike the limitation with the obsolescent <CODE>use attrs</CODE>, the
  1141. <CODE>sub : ATTRLIST</CODE> syntax works to associate the attributes with
  1142. a pre-declaration, and not just with a subroutine definition.</P>
  1143. <P>The attributes must be valid as simple identifier names (without any
  1144. punctuation other than the '_' character).  They may have a parameter
  1145. list appended, which is only checked for whether its parentheses ('(',')')
  1146. nest properly.</P>
  1147. <P>Examples of valid syntax (even though the attributes are unknown):</P>
  1148. <PRE>
  1149.     sub fnord (&\%) : switch(10,foo(7,3))  :  expensive ;
  1150.     sub plugh () : Ugly('\(") :Bad ;
  1151.     sub xyzzy : _5x5 { ... }</PRE>
  1152. <P>Examples of invalid syntax:</P>
  1153. <PRE>
  1154.     sub fnord : switch(10,foo() ; # ()-string not balanced
  1155.     sub snoid : Ugly('(') ;       # ()-string not balanced
  1156.     sub xyzzy : 5x5 ;             # "5x5" not a valid identifier
  1157.     sub plugh : Y2::north ;       # "Y2::north" not a simple identifier
  1158.     sub snurt : foo + bar ;       # "+" not a colon or space</PRE>
  1159. <P>The attribute list is passed as a list of constant strings to the code
  1160. which associates them with the subroutine.  In particular, the second example
  1161. of valid syntax above currently looks like this in terms of how it's
  1162. parsed and invoked:</P>
  1163. <PRE>
  1164.     use attributes __PACKAGE__, \&plugh, q[Ugly('\(")], 'Bad';</PRE>
  1165. <P>For further details on attribute lists and their manipulation,
  1166. see <A HREF="../../lib/attributes.html">the attributes manpage</A>.</P>
  1167. <P>
  1168. <HR>
  1169. <H1><A NAME="see also">SEE ALSO</A></H1>
  1170. <P>See <A HREF="../../lib/Pod/perlref.html#function templates">Function Templates in the perlref manpage</A> for more about references and closures.
  1171. See <A HREF="../../lib/Pod/perlxs.html">the perlxs manpage</A> if you'd like to learn about calling C subroutines from Perl.  
  1172. See <A HREF="../../lib/Pod/perlembed.html">the perlembed manpage</A> if you'd like to learn about calling PErl subroutines from C.  
  1173. See <A HREF="../../lib/Pod/perlmod.html">the perlmod manpage</A> to learn about bundling up your functions in separate files.
  1174. See <A HREF="../../lib/Pod/perlmodlib.html">the perlmodlib manpage</A> to learn what library modules come standard on your system.
  1175. See <A HREF="../../lib/Pod/perltoot.html">the perltoot manpage</A> to learn how to make object method calls.</P>
  1176. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  1177. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  1178. <STRONG><P CLASS=block> perlsub - Perl subroutines</P></STRONG>
  1179. </TD></TR>
  1180. </TABLE>
  1181.  
  1182. </BODY>
  1183.  
  1184. </HTML>
  1185.