home *** CD-ROM | disk | FTP | other *** search
/ BURKS 2 / BURKS_AUG97.ISO / SLAKWARE / D13 / PERL2.TGZ / perl2.tar / usr / lib / perl5 / pod / perlsyn.pod < prev    next >
Text File  |  1996-06-28  |  18KB  |  509 lines

  1. =head1 NAME
  2.  
  3. perlsyn - Perl syntax
  4.  
  5. =head1 DESCRIPTION
  6.  
  7. A Perl script consists of a sequence of declarations and statements.
  8. The only things that need to be declared in Perl are report formats
  9. and subroutines.  See the sections below for more information on those
  10. declarations.  All uninitialized user-created objects are assumed to
  11. start with a null or 0 value until they are defined by some explicit
  12. operation such as assignment.  (Though you can get warnings about the
  13. use of undefined values if you like.)  The sequence of statements is
  14. executed just once, unlike in B<sed> and B<awk> scripts, where the
  15. sequence of statements is executed for each input line.  While this means
  16. that you must explicitly loop over the lines of your input file (or
  17. files), it also means you have much more control over which files and
  18. which lines you look at.  (Actually, I'm lying--it is possible to do an
  19. implicit loop with either the B<-n> or B<-p> switch.  It's just not the
  20. mandatory default like it is in B<sed> and B<awk>.)
  21.  
  22. =head2 Declarations
  23.  
  24. Perl is, for the most part, a free-form language.  (The only
  25. exception to this is format declarations, for obvious reasons.) Comments
  26. are indicated by the "#" character, and extend to the end of the line.  If
  27. you attempt to use C</* */> C-style comments, it will be interpreted
  28. either as division or pattern matching, depending on the context, and C++
  29. C<//> comments just look like a null regular expression, so don't do
  30. that.
  31.  
  32. A declaration can be put anywhere a statement can, but has no effect on
  33. the execution of the primary sequence of statements--declarations all
  34. take effect at compile time.  Typically all the declarations are put at
  35. the beginning or the end of the script.  However, if you're using 
  36. lexically-scoped private variables created with my(), you'll have to make sure
  37. your format or subroutine definition is within the same block scope
  38. as the my if you expect to to be able to access those private variables.
  39.  
  40. Declaring a subroutine allows a subroutine name to be used as if it were a
  41. list operator from that point forward in the program.  You can declare a
  42. subroutine (prototyped to take one scalar parameter) without defining it by saying just:
  43.  
  44.     sub myname ($);
  45.     $me = myname $0         or die "can't get myname";
  46.  
  47. Note that it functions as a list operator though, not as a unary
  48. operator, so be careful to use C<or> instead of C<||> there.
  49.  
  50. Subroutines declarations can also be loaded up with the C<require> statement
  51. or both loaded and imported into your namespace with a C<use> statement.
  52. See L<perlmod> for details on this.
  53.  
  54. A statement sequence may contain declarations of lexically-scoped
  55. variables, but apart from declaring a variable name, the declaration acts
  56. like an ordinary statement, and is elaborated within the sequence of
  57. statements as if it were an ordinary statement.  That means it actually
  58. has both compile-time and run-time effects.
  59.  
  60. =head2 Simple statements
  61.  
  62. The only kind of simple statement is an expression evaluated for its
  63. side effects.  Every simple statement must be terminated with a
  64. semicolon, unless it is the final statement in a block, in which case
  65. the semicolon is optional.  (A semicolon is still encouraged there if the
  66. block takes up more than one line, since you may eventually add another line.)
  67. Note that there are some operators like C<eval {}> and C<do {}> that look
  68. like compound statements, but aren't (they're just TERMs in an expression), 
  69. and thus need an explicit termination if used as the last item in a statement.
  70.  
  71. Any simple statement may optionally be followed by a I<SINGLE> modifier,
  72. just before the terminating semicolon (or block ending).  The possible
  73. modifiers are:
  74.  
  75.     if EXPR
  76.     unless EXPR
  77.     while EXPR
  78.     until EXPR
  79.  
  80. The C<if> and C<unless> modifiers have the expected semantics,
  81. presuming you're a speaker of English.  The C<while> and C<until>
  82. modifiers also have the usual "while loop" semantics (conditional
  83. evaluated first), except when applied to a do-BLOCK (or to the
  84. now-deprecated do-SUBROUTINE statement), in which case the block
  85. executes once before the conditional is evaluated.  This is so that you
  86. can write loops like:
  87.  
  88.     do {
  89.     $line = <STDIN>;
  90.     ...
  91.     } until $line  eq ".\n";
  92.  
  93. See L<perlfunc/do>.  Note also that the loop control
  94. statements described later will I<NOT> work in this construct, since
  95. modifiers don't take loop labels.  Sorry.  You can always wrap
  96. another block around it to do that sort of thing.
  97.  
  98. =head2 Compound statements
  99.  
  100. In Perl, a sequence of statements that defines a scope is called a block.
  101. Sometimes a block is delimited by the file containing it (in the case
  102. of a required file, or the program as a whole), and sometimes a block
  103. is delimited by the extent of a string (in the case of an eval).
  104.  
  105. But generally, a block is delimited by curly brackets, also known as braces.
  106. We will call this syntactic construct a BLOCK.
  107.  
  108. The following compound statements may be used to control flow:
  109.  
  110.     if (EXPR) BLOCK
  111.     if (EXPR) BLOCK else BLOCK
  112.     if (EXPR) BLOCK elsif (EXPR) BLOCK ... else BLOCK
  113.     LABEL while (EXPR) BLOCK
  114.     LABEL while (EXPR) BLOCK continue BLOCK
  115.     LABEL for (EXPR; EXPR; EXPR) BLOCK
  116.     LABEL foreach VAR (LIST) BLOCK
  117.     LABEL BLOCK continue BLOCK
  118.  
  119. Note that, unlike C and Pascal, these are defined in terms of BLOCKs,
  120. not statements.  This means that the curly brackets are I<required>--no
  121. dangling statements allowed.  If you want to write conditionals without
  122. curly brackets there are several other ways to do it.  The following
  123. all do the same thing:
  124.  
  125.     if (!open(FOO)) { die "Can't open $FOO: $!"; }
  126.     die "Can't open $FOO: $!" unless open(FOO);
  127.     open(FOO) or die "Can't open $FOO: $!";    # FOO or bust!
  128.     open(FOO) ? 'hi mom' : die "Can't open $FOO: $!";
  129.             # a bit exotic, that last one
  130.  
  131. The C<if> statement is straightforward.  Since BLOCKs are always
  132. bounded by curly brackets, there is never any ambiguity about which
  133. C<if> an C<else> goes with.  If you use C<unless> in place of C<if>,
  134. the sense of the test is reversed.
  135.  
  136. The C<while> statement executes the block as long as the expression is
  137. true (does not evaluate to the null string or 0 or "0").  The LABEL is
  138. optional, and if present, consists of an identifier followed by a colon.
  139. The LABEL identifies the loop for the loop control statements C<next>,
  140. C<last>, and C<redo>.  If the LABEL is omitted, the loop control statement
  141. refers to the innermost enclosing loop.  This may include dynamically
  142. looking back your call-stack at run time to find the LABEL.  Such
  143. desperate behavior triggers a warning if you use the B<-w> flag.
  144.  
  145. If there is a C<continue> BLOCK, it is always executed just before the
  146. conditional is about to be evaluated again, just like the third part of a
  147. C<for> loop in C.  Thus it can be used to increment a loop variable, even
  148. when the loop has been continued via the C<next> statement (which is
  149. similar to the C C<continue> statement).
  150.  
  151. =head2 Loop Control
  152.  
  153. The C<next> command is like the C<continue> statement in C; it starts
  154. the next iteration of the loop:
  155.  
  156.     LINE: while (<STDIN>) {
  157.     next LINE if /^#/;    # discard comments
  158.     ...
  159.     }
  160.  
  161. The C<last> command is like the C<break> statement in C (as used in
  162. loops); it immediately exits the loop in question.  The
  163. C<continue> block, if any, is not executed:
  164.  
  165.     LINE: while (<STDIN>) {
  166.     last LINE if /^$/;    # exit when done with header
  167.     ...
  168.     }
  169.  
  170. The C<redo> command restarts the loop block without evaluating the
  171. conditional again.  The C<continue> block, if any, is I<not> executed.
  172. This command is normally used by programs that want to lie to themselves
  173. about what was just input.
  174.  
  175. For example, when processing a file like F</etc/termcap>.
  176. If your input lines might end in backslashes to indicate continuation, you
  177. want to skip ahead and get the next record.
  178.  
  179.     while (<>) {
  180.     chomp;
  181.     if (s/\\$//) { 
  182.         $_ .= <>; 
  183.         redo unless eof();
  184.     }
  185.     # now process $_
  186.     } 
  187.  
  188. which is Perl short-hand for the more explicitly written version:
  189.  
  190.     LINE: while ($line = <ARGV>) {
  191.     chomp($line);
  192.     if ($line =~ s/\\$//) { 
  193.         $line .= <ARGV>; 
  194.         redo LINE unless eof(); # not eof(ARGV)!
  195.     }
  196.     # now process $line
  197.     } 
  198.  
  199. Or here's a a simpleminded Pas