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

  1. <HTML>
  2. <HEAD>
  3. <TITLE>perldata - Perl data types</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> perldata - Perl data types</P></STRONG>
  12. </TD></TR>
  13. </TABLE>
  14.  
  15. <A NAME="__index__"></A>
  16. <!-- INDEX BEGIN -->
  17.  
  18. <UL>
  19.  
  20.     <LI><A HREF="#name">NAME</A></LI>
  21.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  22.     <UL>
  23.  
  24.         <LI><A HREF="#variable names">Variable names</A></LI>
  25.         <LI><A HREF="#context">Context</A></LI>
  26.         <LI><A HREF="#scalar values">Scalar values</A></LI>
  27.         <LI><A HREF="#scalar value constructors">Scalar value constructors</A></LI>
  28.         <LI><A HREF="#list value constructors">List value constructors</A></LI>
  29.         <LI><A HREF="#slices">Slices</A></LI>
  30.         <LI><A HREF="#typeglobs and filehandles">Typeglobs and Filehandles</A></LI>
  31.     </UL>
  32.  
  33.     <LI><A HREF="#see also">SEE ALSO</A></LI>
  34. </UL>
  35. <!-- INDEX END -->
  36.  
  37. <HR>
  38. <P>
  39. <H1><A NAME="name">NAME</A></H1>
  40. <P>perldata - Perl data types</P>
  41. <P>
  42. <HR>
  43. <H1><A NAME="description">DESCRIPTION</A></H1>
  44. <P>
  45. <H2><A NAME="variable names">Variable names</A></H2>
  46. <P>Perl has three built-in data types: scalars, arrays of scalars, and
  47. associative arrays of scalars, known as ``hashes''.  Normal arrays
  48. are ordered lists of scalars indexed by number, starting with 0 and with
  49. negative subscripts counting from the end.  Hashes are unordered
  50. collections of scalar values indexed by their associated string key.</P>
  51. <P>Values are usually referred to by name, or through a named reference.
  52. The first character of the name tells you to what sort of data
  53. structure it refers.  The rest of the name tells you the particular
  54. value to which it refers.  Usually this name is a single <EM>identifier</EM>,
  55. that is, a string beginning with a letter or underscore, and
  56. containing letters, underscores, and digits.  In some cases, it may
  57. be a chain of identifiers, separated by <CODE>::</CODE> (or by the slightly
  58. archaic <CODE>'</CODE>); all but the last are interpreted as names of packages,
  59. to locate the namespace in which to look up the final identifier
  60. (see <A HREF="../../lib/Pod/perlmod.html#packages">Packages in the perlmod manpage</A> for details).  It's possible to substitute
  61. for a simple identifier, an expression that produces a reference
  62. to the value at runtime.   This is described in more detail below
  63. and in <A HREF="../../lib/Pod/perlref.html">the perlref manpage</A>.</P>
  64. <P>Perl also has its own built-in variables whose names don't follow
  65. these rules.  They have strange names so they don't accidentally
  66. collide with one of your normal variables.  Strings that match
  67. parenthesized parts of a regular expression are saved under names
  68. containing only digits after the <CODE>$</CODE> (see <A HREF="../../lib/Pod/perlop.html">the perlop manpage</A> and <A HREF="../../lib/Pod/perlre.html">the perlre manpage</A>).
  69. In addition, several special variables that provide windows into
  70. the inner working of Perl have names containing punctuation characters
  71. and control characters.  These are documented in <A HREF="../../lib/Pod/perlvar.html">the perlvar manpage</A>.</P>
  72. <P>Scalar values are always named with '$', even when referring to a
  73. scalar that is part of an array or a hash.  The '$' symbol works
  74. semantically like the English word ``the'' in that it indicates a
  75. single value is expected.</P>
  76. <PRE>
  77.     $days               # the simple scalar value "days"
  78.     $days[28]           # the 29th element of array @days
  79.     $days{'Feb'}        # the 'Feb' value from hash %days
  80.     $#days              # the last index of array @days</PRE>
  81. <P>Entire arrays (and slices of arrays and hashes) are denoted by '@',
  82. which works much like the word ``these'' or ``those'' does in English,
  83. in that it indicates multiple values are expected.</P>
  84. <PRE>
  85.     @days               # ($days[0], $days[1],... $days[n])
  86.     @days[3,4,5]        # same as ($days[3],$days[4],$days[5])
  87.     @days{'a','c'}      # same as ($days{'a'},$days{'c'})</PRE>
  88. <P>Entire hashes are denoted by '%':</P>
  89. <PRE>
  90.     %days               # (key1, val1, key2, val2 ...)</PRE>
  91. <P>In addition, subroutines are named with an initial '&', though this
  92. is optional when unambiguous, just as the word ``do'' is often redundant
  93. in English.  Symbol table entries can be named with an initial '*',
  94. but you don't really care about that yet (if ever :-).</P>
  95. <P>Every variable type has its own namespace, as do several
  96. non-variable identifiers.  This means that you can, without fear
  97. of conflict, use the same name for a scalar variable, an array, or
  98. a hash--or, for that matter, for a filehandle, a directory handle, a
  99. subroutine name, a format name, or a label.  This means that $foo
  100. and @foo are two different variables.  It also means that <CODE>$foo[1]</CODE>
  101. is a part of @foo, not a part of $foo.  This may seem a bit weird,
  102. but that's okay, because it is weird.</P>
  103. <P>Because variable references always start with '$', '@', or '%', the
  104. ``reserved'' words aren't in fact reserved with respect to variable
  105. names.  They <EM>are</EM> reserved with respect to labels and filehandles,
  106. however, which don't have an initial special character.  You can't
  107. have a filehandle named ``log'', for instance.  Hint: you could say
  108. <A HREF="../../lib/Pod/perlfunc.html#item_open"><CODE>open(LOG,'logfile')</CODE></A> rather than <A HREF="../../lib/Pod/perlfunc.html#item_open"><CODE>open(log,'logfile')</CODE></A>.  Using
  109. uppercase filehandles also improves readability and protects you
  110. from conflict with future reserved words.  Case <EM>is</EM> significant--``FOO'',
  111. ``Foo'', and ``foo'' are all different names.  Names that start with a
  112. letter or underscore may also contain digits and underscores.</P>
  113. <P>It is possible to replace such an alphanumeric name with an expression
  114. that returns a reference to the appropriate type.  For a description
  115. of this, see <A HREF="../../lib/Pod/perlref.html">the perlref manpage</A>.</P>
  116. <P>Names that start with a digit may contain only more digits.  Names
  117. that do not start with a letter, underscore, or digit are limited to
  118. one character, e.g.,  <CODE>$%</CODE> or <CODE>$$</CODE>.  (Most of these one character names
  119. have a predefined significance to Perl.  For instance, <CODE>$$</CODE> is the
  120. current process id.)</P>
  121. <P>
  122. <H2><A NAME="context">Context</A></H2>
  123. <P>The interpretation of operations and values in Perl sometimes depends
  124. on the requirements of the context around the operation or value.
  125. There are two major contexts: list and scalar.  Certain operations
  126. return list values in contexts wanting a list, and scalar values
  127. otherwise.  If this is true of an operation it will be mentioned in
  128. the documentation for that operation.  In other words, Perl overloads
  129. certain operations based on whether the expected return value is
  130. singular or plural.  Some words in English work this way, like ``fish''
  131. and ``sheep''.</P>
  132. <P>In a reciprocal fashion, an operation provides either a scalar or a
  133. list context to each of its arguments.  For example, if you say</P>
  134. <PRE>
  135.     int( <STDIN> )</PRE>
  136. <P>the integer operation provides scalar context for the <>
  137. operator, which responds by reading one line from STDIN and passing it
  138. back to the integer operation, which will then find the integer value
  139. of that line and return that.  If, on the other hand, you say</P>
  140. <PRE>
  141.     sort( <STDIN> )</PRE>
  142. <P>then the sort operation provides list context for <>, which
  143. will proceed to read every line available up to the end of file, and
  144. pass that list of lines back to the sort routine, which will then
  145. sort those lines and return them as a list to whatever the context
  146. of the sort was.</P>
  147. <P>Assignment is a little bit special in that it uses its left argument
  148. to determine the context for the right argument.  Assignment to a
  149. scalar evaluates the right-hand side in scalar context, while
  150. assignment to an array or hash evaluates the righthand side in list
  151. context.  Assignment to a list (or slice, which is just a list
  152. anyway) also evaluates the righthand side in list context.</P>
  153. <P>When you use the <CODE>use warnings</CODE> pragma or Perl's <STRONG>-w</STRONG> command-line 
  154. option, you may see warnings
  155. about useless uses of constants or functions in ``void context''.
  156. Void context just means the value has been discarded, such as a
  157. statement containing only <CODE>"fred";</CODE> or <A HREF="../../lib/Pod/perlfunc.html#item_getpwuid"><CODE>getpwuid(0);</CODE></A>.  It still
  158. counts as scalar context for functions that care whether or not
  159. they're being called in list context.</P>
  160. <P>User-defined subroutines may choose to care whether they are being
  161. called in a void, scalar, or list context.  Most subroutines do not
  162. need to bother, though.  That's because both scalars and lists are
  163. automatically interpolated into lists.  See <A HREF="../../lib/Pod/perlfunc.html#wantarray">wantarray in the perlfunc manpage</A>
  164. for how you would dynamically discern your function's calling
  165. context.</P>
  166. <P>
  167. <H2><A NAME="scalar values">Scalar values</A></H2>
  168. <P>All data in Perl is a scalar, an array of scalars, or a hash of
  169. scalars.  A scalar may contain one single value in any of three
  170. different flavors: a number, a string, or a reference.  In general,
  171. conversion from one form to another is transparent.  Although a
  172. scalar may not directly hold multiple values, it may contain a
  173. reference to an array or hash which in turn contains multiple values.</P>
  174. <P>Scalars aren't necessarily one thing or another.  There's no place
  175. to declare a scalar variable to be of type ``string'', type ``number'',
  176. type ``reference'', or anything else.  Because of the automatic
  177. conversion of scalars, operations that return scalars don't need
  178. to care (and in fact, cannot care) whether their caller is looking
  179. for a string, a number, or a reference.  Perl is a contextually
  180. polymorphic language whose scalars can be strings, numbers, or
  181. references (which includes objects).  Although strings and numbers
  182. are considered pretty much the same thing for nearly all purposes,
  183. references are strongly-typed, uncastable pointers with builtin
  184. reference-counting and destructor invocation.</P>
  185. <P>A scalar value is interpreted as TRUE in the Boolean sense if it is not
  186. the null string or the number 0 (or its string equivalent, ``0'').  The
  187. Boolean context is just a special kind of scalar context where no 
  188. conversion to a string or a number is ever performed.</P>
  189. <P>There are actually two varieties of null strings (sometimes referred
  190. to as ``empty'' strings), a defined one and an undefined one.  The
  191. defined version is just a string of length zero, such as <CODE>""</CODE>.
  192. The undefined version is the value that indicates that there is
  193. no real value for something, such as when there was an error, or
  194. at end of file, or when you refer to an uninitialized variable or
  195. element of an array or hash.  Although in early versions of Perl,
  196. an undefined scalar could become defined when first used in a
  197. place expecting a defined value, this no longer happens except for
  198. rare cases of autovivification as explained in <A HREF="../../lib/Pod/perlref.html">the perlref manpage</A>.  You can
  199. use the <A HREF="../../lib/Pod/perlfunc.html#item_defined"><CODE>defined()</CODE></A> operator to determine whether a scalar value is
  200. defined (this has no meaning on arrays or hashes), and the <A HREF="../../lib/Pod/perlfunc.html#item_undef"><CODE>undef()</CODE></A>
  201. operator to produce an undefined value.</P>
  202. <P>To find out whether a given string is a valid non-zero number, it's
  203. sometimes enough to test it against both numeric 0 and also lexical
  204. ``0'' (although this will cause <STRONG>-w</STRONG> noises).  That's because strings
  205. that aren't numbers count as 0, just as they do in <STRONG>awk</STRONG>:</P>
  206. <PRE>
  207.     if ($str == 0 && $str ne "0")  {
  208.         warn "That doesn't look like a number";
  209.     }</PRE>
  210. <P>That method may be best because otherwise you won't treat IEEE
  211. notations like <CODE>NaN</CODE> or <CODE>Infinity</CODE> properly.  At other times, you
  212. might prefer to determine whether string data can be used numerically
  213. by calling the POSIX::strtod() function or by inspecting your string
  214. with a regular expression (as documented in <A HREF="../../lib/Pod/perlre.html">the perlre manpage</A>).</P>
  215. <PRE>
  216.     warn "has nondigits"        if     /\D/;
  217.     warn "not a natural number" unless /^\d+$/;             # rejects -3
  218.     warn "not an integer"       unless /^-?\d+$/;           # rejects +3
  219.     warn "not an integer"       unless /^[+-]?\d+$/;
  220.     warn "not a decimal number" unless /^-?\d+\.?\d*$/;     # rejects .2
  221.     warn "not a decimal number" unless /^-?(?:\d+(?:\.\d*)?|\.\d+)$/;
  222.     warn "not a C float"
  223.         unless /^([+-]?)(?=\d|\.\d)\d*(\.\d*)?([Ee]([+-]?\d+))?$/;</PRE>
  224. <P>The length of an array is a scalar value.  You may find the length
  225. of array @days by evaluating <CODE>$#days</CODE>, as in <STRONG>csh</STRONG>.  Technically
  226. speaking, this isn't the length of the array; it's the subscript
  227. of the last element, since there is ordinarily a 0th element.
  228. Assigning to <CODE>$#days</CODE> actually changes the length of the array.
  229. Shortening an array this way destroys intervening values.  Lengthening
  230. an array that was previously shortened does not recover values
  231. that were in those elements.  (It used to do so in Perl 4, but we
  232. had to break this to make sure destructors were called when expected.)</P>
  233. <P>You can also gain some miniscule measure of efficiency by pre-extending
  234. an array that is going to get big.  You can also extend an array
  235. by assigning to an element that is off the end of the array.  You
  236. can truncate an array down to nothing by assigning the null list
  237. () to it.  The following are equivalent:</P>
  238. <PRE>
  239.     @whatever = ();
  240.     $#whatever = -1;</PRE>
  241. <P>If you evaluate an array in scalar context, it returns the length
  242. of the array.  (Note that this is not true of lists, which return
  243. the last value, like the C comma operator, nor of built-in functions,
  244. which return whatever they feel like returning.)  The following is
  245. always true:</P>
  246. <PRE>
  247.     scalar(@whatever) == $#whatever - $[ + 1;</PRE>
  248. <P>Version 5 of Perl changed the semantics of <CODE>$[</CODE>: files that don't set
  249. the value of <CODE>$[</CODE> no longer need to worry about whether another
  250. file changed its value.  (In other words, use of <CODE>$[</CODE> is deprecated.)
  251. So in general you can assume that</P>
  252. <PRE>
  253.     scalar(@whatever) == $#whatever + 1;</PRE>
  254. <P>Some programmers choose to use an explicit conversion so as to 
  255. leave nothing to doubt:</P>
  256. <PRE>
  257.     $element_count = scalar(@whatever);</PRE>
  258. <P>If you evaluate a hash in scalar context, it returns false if the
  259. hash is empty.  If there are any key/value pairs, it returns true;
  260. more precisely, the value returned is a string consisting of the
  261. number of used buckets and the number of allocated buckets, separated
  262. by a slash.  This is pretty much useful only to find out whether
  263. Perl's internal hashing algorithm is performing poorly on your data
  264. set.  For example, you stick 10,000 things in a hash, but evaluating
  265. %HASH in scalar context reveals <CODE>"1/16"</CODE>, which means only one out
  266. of sixteen buckets has been touched, and presumably contains all
  267. 10,000 of your items.  This isn't supposed to happen.</P>
  268. <P>You can preallocate space for a hash by assigning to the <A HREF="../../lib/Pod/perlfunc.html#item_keys"><CODE>keys()</CODE></A> function.
  269. This rounds up the allocated bucked to the next power of two:</P>
  270. <PRE>
  271.     keys(%users) = 1000;                # allocate 1024 buckets</PRE>
  272. <P>
  273. <H2><A NAME="scalar value constructors">Scalar value constructors</A></H2>
  274. <P>Numeric literals are specified in any of the following floating point or
  275. integer formats:</P>
  276. <PRE>
  277.     12345
  278.     12345.67
  279.     .23E-10             # a very small number
  280.     4_294_967_296       # underline for legibility
  281.     0xff                # hex
  282.     0377                # octal
  283.     0b011011            # binary</PRE>
  284. <P>String literals are usually delimited by either single or double
  285. quotes.  They work much like quotes in the standard Unix shells:
  286. double-quoted string literals are subject to backslash and variable
  287. substitution; single-quoted strings are not (except for <CODE>\'</CODE> and
  288. <CODE>\\</CODE>).  The usual C-style backslash rules apply for making
  289. characters such as newline, tab, etc., as well as some more exotic
  290. forms.  See <A HREF="../../lib/Pod/perlop.html#quote and quotelike operators">Quote and Quote-like Operators in the perlop manpage</A> for a list.</P>
  291. <P>Hexadecimal, octal, or binary, representations in string literals
  292. (e.g. '0xff') are not automatically converted to their integer
  293. representation.  The <A HREF="../../lib/Pod/perlfunc.html#item_hex"><CODE>hex()</CODE></A> and <A HREF="../../lib/Pod/perlfunc.html#item_oct"><CODE>oct()</CODE></A> functions make these conversions
  294. for you.  See <A HREF="../../lib/Pod/perlfunc.html#hex">hex in the perlfunc manpage</A> and <A HREF="../../lib/Pod/perlfunc.html#oct">oct in the perlfunc manpage</A> for more details.</P>
  295. <P>You can also embed newlines directly in your strings, i.e., they can end
  296. on a different line than they begin.  This is nice, but if you forget
  297. your trailing quote, the error will not be reported until Perl finds
  298. another line containing the quote character, which may be much further
  299. on in the script.  Variable substitution inside strings is limited to
  300. scalar variables, arrays, and array or hash slices.  (In other words,
  301. names beginning with $ or @, followed by an optional bracketed
  302. expression as a subscript.)  The following code segment prints out ``The
  303. price is $100.''</P>
  304. <PRE>
  305.     $Price = '$100';    # not interpreted
  306.     print "The price is $Price.\n";     # interpreted</PRE>
  307. <P>As in some shells, you can enclose the variable name in braces to
  308. disambiguate it from following alphanumerics.  You must also do
  309. this when interpolating a variable into a string to separate the
  310. variable name from a following double-colon or an apostrophe, since
  311. these would be otherwise treated as a package separator:</P>
  312. <PRE>
  313.     $who = "Larry";
  314.     print PASSWD "${who}::0:0:Superuser:/:/bin/perl\n";
  315.     print "We use ${who}speak when ${who}'s here.\n";</PRE>
  316. <P>Without the braces, Perl would have looked for a $whospeak, a
  317. <CODE>$who::0</CODE>, and a <CODE>$who's</CODE> variable.  The last two would be the
  318. $0 and the $s variables in the (presumably) non-existent package
  319. <CODE>who</CODE>.</P>
  320. <P>In fact, an identifier within such curlies is forced to be a string,
  321. as is any simple identifier within a hash subscript.  Neither need
  322. quoting.  Our earlier example, <CODE>$days{'Feb'}</CODE> can be written as
  323. <CODE>$days{Feb}</CODE> and the quotes will be assumed automatically.  But
  324. anything more complicated in the subscript will be interpreted as
  325. an expression.</P>
  326. <P>A literal of the form <CODE>v1.20.300.4000</CODE> is parsed as a string composed
  327. of characters with the specified ordinals.  This provides an alternative,
  328. more readable way to construct strings, rather than use the somewhat less
  329. readable interpolation form <CODE>"\x{1}\x{14}\x{12c}\x{fa0}"</CODE>.  This is useful
  330. for representing Unicode strings, and for comparing version ``numbers''
  331. using the string comparison operators, <CODE>cmp</CODE>, <CODE>gt</CODE>, <CODE>lt</CODE> etc.
  332. If there are two or more dots in the literal, the leading <CODE>v</CODE> may be
  333. omitted.</P>
  334. <PRE>
  335.     print v9786;              # prints UTF-8 encoded SMILEY, "\x{263a}"
  336.     print v102.111.111;       # prints "foo"
  337.     print 102.111.111;        # same</PRE>
  338. <P>Such literals are accepted by both <A HREF="../../lib/Pod/perlfunc.html#item_require"><CODE>require</CODE></A> and <A HREF="../../lib/Pod/perlfunc.html#item_use"><CODE>use</CODE></A> for
  339. doing a version check.  The <CODE>$^V</CODE> special variable also contains the
  340. running Perl interpreter's version in this form.  See <A HREF="../../lib/Pod/perlvar.html#$^v">$^V in the perlvar manpage</A>.</P>
  341. <P>The special literals __FILE__, __LINE__, and __PACKAGE__
  342. represent the current filename, line number, and package name at that
  343. point in your program.  They may be used only as separate tokens; they
  344. will not be interpolated into strings.  If there is no current package
  345. (due to an empty <CODE>package;</CODE> directive), __PACKAGE__ is the undefined
  346. value.</P>
  347. <P>The two control characters ^D and ^Z, and the tokens __END__ and __DATA__
  348. may be used to indicate the logical end of the script before the actual
  349. end of file.  Any following text is ignored.</P>
  350. <P>Text after __DATA__ but may be read via the filehandle <CODE>PACKNAME::DATA</CODE>,
  351. where <CODE>PACKNAME</CODE> is the package that was current when the __DATA__
  352. token was encountered.  The filehandle is left open pointing to the
  353. contents after __DATA__.  It is the program's responsibility to
  354. <A HREF="../../lib/Pod/perlfunc.html#item_close"><CODE>close DATA</CODE></A> when it is done reading from it.  For compatibility with
  355. older scripts written before __DATA__ was introduced, __END__ behaves
  356. like __DATA__ in the toplevel script (but not in files loaded with
  357. <A HREF="../../lib/Pod/perlfunc.html#item_require"><CODE>require</CODE></A> or <A HREF="../../lib/Pod/perlfunc.html#item_do"><CODE>do</CODE></A>) and leaves the remaining contents of the
  358. file accessible via <CODE>main::DATA</CODE>.</P>
  359. <P>See <A HREF="../../lib/SelfLoader.html">the SelfLoader manpage</A> for more description of __DATA__, and
  360. an example of its use.  Note that you cannot read from the DATA
  361. filehandle in a BEGIN block: the BEGIN block is executed as soon
  362. as it is seen (during compilation), at which point the corresponding
  363. __DATA__ (or __END__) token has not yet been seen.</P>
  364. <P>A word that has no other interpretation in the grammar will
  365. be treated as if it were a quoted string.  These are known as
  366. ``barewords''.  As with filehandles and labels, a bareword that consists
  367. entirely of lowercase letters risks conflict with future reserved
  368. words, and if you use the <CODE>use warnings</CODE> pragma or the <STRONG>-w</STRONG> switch, 
  369. Perl will warn you about any
  370. such words.  Some people may wish to outlaw barewords entirely.  If you
  371. say</P>
  372. <PRE>
  373.     use strict 'subs';</PRE>
  374. <P>then any bareword that would NOT be interpreted as a subroutine call
  375. produces a compile-time error instead.  The restriction lasts to the
  376. end of the enclosing block.  An inner block may countermand this
  377. by saying <CODE>no strict 'subs'</CODE>.</P>
  378. <P>Arrays and slices are interpolated into double-quoted strings
  379. by joining the elements with the delimiter specified in the <CODE>$"</CODE>
  380. variable (<CODE>$LIST_SEPARATOR</CODE> in English), space by default.  The
  381. following are equivalent:</P>
  382. <PRE>
  383.     $temp = join($", @ARGV);
  384.     system "echo $temp";</PRE>
  385. <PRE>
  386.     system "echo @ARGV";</PRE>
  387. <P>Within search patterns (which also undergo double-quotish substitution)
  388. there is an unfortunate ambiguity:  Is <CODE>/$foo[bar]/</CODE> to be interpreted as
  389. <CODE>/${foo}[bar]/</CODE> (where <CODE>[bar]</CODE> is a character class for the regular
  390. expression) or as <CODE>/${foo[bar]}/</CODE> (where <CODE>[bar]</CODE> is the subscript to array
  391. @foo)?  If @foo doesn't otherwise exist, then it's obviously a
  392. character class.  If @foo exists, Perl takes a good guess about <CODE>[bar]</CODE>,
  393. and is almost always right.  If it does guess wrong, or if you're just
  394. plain paranoid, you can force the correct interpretation with curly
  395. braces as above.</P>
  396. <P>A line-oriented form of quoting is based on the shell ``here-document''
  397. syntax.  Following a <CODE><<</CODE> you specify a string to terminate
  398. the quoted material, and all lines following the current line down to
  399. the terminating string are the value of the item.  The terminating
  400. string may be either an identifier (a word), or some quoted text.  If
  401. quoted, the type of quotes you use determines the treatment of the
  402. text, just as in regular quoting.  An unquoted identifier works like
  403. double quotes.  There must be no space between the <CODE><<</CODE> and
  404. the identifier.  (If you put a space it will be treated as a null
  405. identifier, which is valid, and matches the first empty line.)  The
  406. terminating string must appear by itself (unquoted and with no
  407. surrounding whitespace) on the terminating line.</P>
  408. <PRE>
  409.         print <<EOF;
  410.     The price is $Price.
  411.     EOF</PRE>
  412. <PRE>
  413.         print <<"EOF";  # same as above
  414.     The price is $Price.
  415.     EOF</PRE>
  416. <PRE>
  417.         print <<`EOC`;  # execute commands
  418.     echo hi there
  419.     echo lo there
  420.     EOC</PRE>
  421. <PRE>
  422.         print <<"foo", <<"bar"; # you can stack them
  423.     I said foo.
  424.     foo
  425.     I said bar.
  426.     bar</PRE>
  427. <PRE>
  428.         myfunc(<<"THIS", 23, <<'THAT');
  429.     Here's a line
  430.     or two.
  431.     THIS
  432.     and here's another.
  433.     THAT</PRE>
  434. <P>Just don't forget that you have to put a semicolon on the end
  435. to finish the statement, as Perl doesn't know you're not going to
  436. try to do this:</P>
  437. <PRE>
  438.         print <<ABC
  439.     179231
  440.     ABC
  441.         + 20;</PRE>
  442. <P>If you want your here-docs to be indented with the 
  443. rest of the code, you'll need to remove leading whitespace
  444. from each line manually:</P>
  445. <PRE>
  446.     ($quote = <<'FINIS') =~ s/^\s+//gm;
  447.         The Road goes ever on and on, 
  448.         down from the door where it began.
  449.     FINIS</PRE>
  450. <P>
  451. <H2><A NAME="list value constructors">List value constructors</A></H2>
  452. <P>List values are denoted by separating individual values by commas
  453. (and enclosing the list in parentheses where precedence requires it):</P>
  454. <PRE>
  455.     (LIST)</PRE>
  456. <P>In a context not requiring a list value, the value of what appears
  457. to be a list literal is simply the value of the final element, as
  458. with the C comma operator.  For example,</P>
  459. <PRE>
  460.     @foo = ('cc', '-E', $bar);</PRE>
  461. <P>assigns the entire list value to array @foo, but</P>
  462. <PRE>
  463.     $foo = ('cc', '-E', $bar);</PRE>
  464. <P>assigns the value of variable $bar to the scalar variable $foo.
  465. Note that the value of an actual array in scalar context is the
  466. length of the array; the following assigns the value 3 to $foo:</P>
  467. <PRE>
  468.     @foo = ('cc', '-E', $bar);
  469.     $foo = @foo;                # $foo gets 3</PRE>
  470. <P>You may have an optional comma before the closing parenthesis of a
  471. list literal, so that you can say:</P>
  472. <PRE>
  473.     @foo = (
  474.         1,
  475.         2,
  476.         3,
  477.     );</PRE>
  478. <P>To use a here-document to assign an array, one line per element,
  479. you might use an approach like this:</P>
  480. <PRE>
  481.     @sauces = <<End_Lines =~ m/(\S.*\S)/g;
  482.         normal tomato
  483.         spicy tomato
  484.         green chile
  485.         pesto
  486.         white wine
  487.     End_Lines</PRE>
  488. <P>LISTs do automatic interpolation of sublists.  That is, when a LIST is
  489. evaluated, each element of the list is evaluated in list context, and
  490. the resulting list value is interpolated into LIST just as if each
  491. individual element were a member of LIST.  Thus arrays and hashes lose their
  492. identity in a LIST--the list</P>
  493. <PRE>
  494.     (@foo,@bar,&SomeSub,%glarch)</PRE>
  495. <P>contains all the elements of @foo followed by all the elements of @bar,
  496. followed by all the elements returned by the subroutine named SomeSub 
  497. called in list context, followed by the key/value pairs of %glarch.
  498. To make a list reference that does <EM>NOT</EM> interpolate, see <A HREF="../../lib/Pod/perlref.html">the perlref manpage</A>.</P>
  499. <P>The null list is represented by ().  Interpolating it in a list
  500. has no effect.  Thus ((),(),()) is equivalent to ().  Similarly,
  501. interpolating an array with no elements is the same as if no
  502. array had been interpolated at that point.</P>
  503. <P>A list value may also be subscripted like a normal array.  You must
  504. put the list in parentheses to avoid ambiguity.  For example:</P>
  505. <PRE>
  506.     # Stat returns list value.
  507.     $time = (stat($file))[8];</PRE>
  508. <PRE>
  509.     # SYNTAX ERROR HERE.
  510.     $time = stat($file)[8];  # OOPS, FORGOT PARENTHESES</PRE>
  511. <PRE>
  512.     # Find a hex digit.
  513.     $hexdigit = ('a','b','c','d','e','f')[$digit-10];</PRE>
  514. <PRE>
  515.     # A "reverse comma operator".
  516.     return (pop(@foo),pop(@foo))[0];</PRE>
  517. <P>Lists may be assigned to only when each element of the list
  518. is itself legal to assign to:</P>
  519. <PRE>
  520.     ($a, $b, $c) = (1, 2, 3);</PRE>
  521. <PRE>
  522.     ($map{'red'}, $map{'blue'}, $map{'green'}) = (0x00f, 0x0f0, 0xf00);</PRE>
  523. <P>An exception to this is that you may assign to <A HREF="../../lib/Pod/perlfunc.html#item_undef"><CODE>undef</CODE></A> in a list.
  524. This is useful for throwing away some of the return values of a
  525. function:</P>
  526. <PRE>
  527.     ($dev, $ino, undef, undef, $uid, $gid) = stat($file);</PRE>
  528. <P>List assignment in scalar context returns the number of elements
  529. produced by the expression on the right side of the assignment:</P>
  530. <PRE>
  531.     $x = (($foo,$bar) = (3,2,1));       # set $x to 3, not 2
  532.     $x = (($foo,$bar) = f());           # set $x to f()'s return count</PRE>
  533. <P>This is handy when you want to do a list assignment in a Boolean
  534. context, because most list functions return a null list when finished,
  535. which when assigned produces a 0, which is interpreted as FALSE.</P>
  536. <P>The final element may be an array or a hash:</P>
  537. <PRE>
  538.     ($a, $b, @rest) = split;
  539.     my($a, $b, %rest) = @_;</PRE>
  540. <P>You can actually put an array or hash anywhere in the list, but the first one
  541. in the list will soak up all the values, and anything after it will become
  542. undefined.  This may be useful in a <A HREF="../../lib/Pod/perlfunc.html#item_my"><CODE>my()</CODE></A> or local().</P>
  543. <P>A hash can be initialized using a literal list holding pairs of
  544. items to be interpreted as a key and a value:</P>
  545. <PRE>
  546.     # same as map assignment above
  547.     %map = ('red',0x00f,'blue',0x0f0,'green',0xf00);</PRE>
  548. <P>While literal lists and named arrays are often interchangeable, that's
  549. not the case for hashes.  Just because you can subscript a list value like
  550. a normal array does not mean that you can subscript a list value as a
  551. hash.  Likewise, hashes included as parts of other lists (including
  552. parameters lists and return lists from functions) always flatten out into
  553. key/value pairs.  That's why it's good to use references sometimes.</P>
  554. <P>It is often more readable to use the <CODE>=></CODE> operator between key/value
  555. pairs.  The <CODE>=></CODE> operator is mostly just a more visually distinctive
  556. synonym for a comma, but it also arranges for its left-hand operand to be
  557. interpreted as a string--if it's a bareword that would be a legal identifier.
  558. This makes it nice for initializing hashes:</P>
  559. <PRE>
  560.     %map = (
  561.                  red   => 0x00f,
  562.                  blue  => 0x0f0,
  563.                  green => 0xf00,
  564.    );</PRE>
  565. <P>or for initializing hash references to be used as records:</P>
  566. <PRE>
  567.     $rec = {
  568.                 witch => 'Mable the Merciless',
  569.                 cat   => 'Fluffy the Ferocious',
  570.                 date  => '10/31/1776',
  571.     };</PRE>
  572. <P>or for using call-by-named-parameter to complicated functions:</P>
  573. <PRE>
  574.    $field = $query->radio_group(
  575.                name      => 'group_name',
  576.                values    => ['eenie','meenie','minie'],
  577.                default   => 'meenie',
  578.                linebreak => 'true',
  579.                labels    => \%labels
  580.    );</PRE>
  581. <P>Note that just because a hash is initialized in that order doesn't
  582. mean that it comes out in that order.  See <A HREF="../../lib/Pod/perlfunc.html#sort">sort in the perlfunc manpage</A> for examples
  583. of how to arrange for an output ordering.</P>
  584. <P>
  585. <H2><A NAME="slices">Slices</A></H2>
  586. <P>A common way to access an array or a hash is one scalar element at a
  587. time.  You can also subscript a list to get a single element from it.</P>
  588. <PRE>
  589.     $whoami = $ENV{"USER"};             # one element from the hash
  590.     $parent = $ISA[0];                  # one element from the array
  591.     $dir    = (getpwnam("daemon"))[7];  # likewise, but with list</PRE>
  592. <P>A slice accesses several elements of a list, an array, or a hash
  593. simultaneously using a list of subscripts.  It's more convenient
  594. than writing out the individual elements as a list of separate
  595. scalar values.</P>
  596. <PRE>
  597.     ($him, $her)   = @folks[0,-1];              # array slice
  598.     @them          = @folks[0 .. 3];            # array slice
  599.     ($who, $home)  = @ENV{"USER", "HOME"};      # hash slice
  600.     ($uid, $dir)   = (getpwnam("daemon"))[2,7]; # list slice</PRE>
  601. <P>Since you can assign to a list of variables, you can also assign to
  602. an array or hash slice.</P>
  603. <PRE>
  604.     @days[3..5]    = qw/Wed Thu Fri/;
  605.     @colors{'red','blue','green'} 
  606.                    = (0xff0000, 0x0000ff, 0x00ff00);
  607.     @folks[0, -1]  = @folks[-1, 0];</PRE>
  608. <P>The previous assignments are exactly equivalent to</P>
  609. <PRE>
  610.     ($days[3], $days[4], $days[5]) = qw/Wed Thu Fri/;
  611.     ($colors{'red'}, $colors{'blue'}, $colors{'green'})
  612.                    = (0xff0000, 0x0000ff, 0x00ff00);
  613.     ($folks[0], $folks[-1]) = ($folks[0], $folks[-1]);</PRE>
  614. <P>Since changing a slice changes the original array or hash that it's
  615. slicing, a <CODE>foreach</CODE> construct will alter some--or even all--of the
  616. values of the array or hash.</P>
  617. <PRE>
  618.     foreach (@array[ 4 .. 10 ]) { s/peter/paul/ }</PRE>
  619. <PRE>
  620.     foreach (@hash{keys %hash}) {
  621.         s/^\s+//;           # trim leading whitespace
  622.         s/\s+$//;           # trim trailing whitespace
  623.         s/(\w+)/\u\L$1/g;   # "titlecase" words
  624.     }</PRE>
  625. <P>A slice of an empty list is still an empty list.  Thus:</P>
  626. <PRE>
  627.     @a = ()[1,0];           # @a has no elements
  628.     @b = (@a)[0,1];         # @b has no elements
  629.     @c = (0,1)[2,3];        # @c has no elements</PRE>
  630. <P>But:</P>
  631. <PRE>
  632.     @a = (1)[1,0];          # @a has two elements
  633.     @b = (1,undef)[1,0,2];  # @b has three elements</PRE>
  634. <P>This makes it easy to write loops that terminate when a null list
  635. is returned:</P>
  636. <PRE>
  637.     while ( ($home, $user) = (getpwent)[7,0]) {
  638.         printf "%-8s %s\n", $user, $home;
  639.     }</PRE>
  640. <P>As noted earlier in this document, the scalar sense of list assignment
  641. is the number of elements on the right-hand side of the assignment.
  642. The null list contains no elements, so when the password file is
  643. exhausted, the result is 0, not 2.</P>
  644. <P>If you're confused about why you use an '@' there on a hash slice
  645. instead of a '%', think of it like this.  The type of bracket (square
  646. or curly) governs whether it's an array or a hash being looked at.
  647. On the other hand, the leading symbol ('$' or '@') on the array or
  648. hash indicates whether you are getting back a singular value (a
  649. scalar) or a plural one (a list).</P>
  650. <P>
  651. <H2><A NAME="typeglobs and filehandles">Typeglobs and Filehandles</A></H2>
  652. <P>Perl uses an internal type called a <EM>typeglob</EM> to hold an entire
  653. symbol table entry.  The type prefix of a typeglob is a <CODE>*</CODE>, because
  654. it represents all types.  This used to be the preferred way to
  655. pass arrays and hashes by reference into a function, but now that
  656. we have real references, this is seldom needed.</P>
  657. <P>The main use of typeglobs in modern Perl is create symbol table aliases.
  658. This assignment:</P>
  659. <PRE>
  660.     *this = *that;</PRE>
  661. <P>makes $this an alias for $that, @this an alias for @that, %this an alias
  662. for %that, &this an alias for &that, etc.  Much safer is to use a reference.
  663. This:</P>
  664. <PRE>
  665.     local *Here::blue = \$There::green;</PRE>
  666. <P>temporarily makes $Here::blue an alias for $There::green, but doesn't
  667. make @Here::blue an alias for @There::green, or %Here::blue an alias for
  668. %There::green, etc.  See <A HREF="../../lib/Pod/perlmod.html#symbol tables">Symbol Tables in the perlmod manpage</A> for more examples
  669. of this.  Strange though this may seem, this is the basis for the whole
  670. module import/export system.</P>
  671. <P>Another use for typeglobs is to pass filehandles into a function or
  672. to create new filehandles.  If you need to use a typeglob to save away
  673. a filehandle, do it this way:</P>
  674. <PRE>
  675.     $fh = *STDOUT;</PRE>
  676. <P>or perhaps as a real reference, like this:</P>
  677. <PRE>
  678.     $fh = \*STDOUT;</PRE>
  679. <P>See <A HREF="../../lib/Pod/perlsub.html">the perlsub manpage</A> for examples of using these as indirect filehandles
  680. in functions.</P>
  681. <P>Typeglobs are also a way to create a local filehandle using the <A HREF="../../lib/Pod/perlfunc.html#item_local"><CODE>local()</CODE></A>
  682. operator.  These last until their block is exited, but may be passed back.
  683. For example:</P>
  684. <PRE>
  685.     sub newopen {
  686.         my $path = shift;
  687.         local  *FH;  # not my!
  688.         open   (FH, $path)          or  return undef;
  689.         return *FH;
  690.     }
  691.     $fh = newopen('/etc/passwd');</PRE>
  692. <P>Now that we have the <CODE>*foo{THING}</CODE> notation, typeglobs aren't used as much
  693. for filehandle manipulations, although they're still needed to pass brand
  694. new file and directory handles into or out of functions. That's because
  695. <CODE>*HANDLE{IO}</CODE> only works if HANDLE has already been used as a handle.
  696. In other words, <CODE>*FH</CODE> must be used to create new symbol table entries;
  697. <CODE>*foo{THING}</CODE> cannot.  When in doubt, use <CODE>*FH</CODE>.</P>
  698. <P>All functions that are capable of creating filehandles (open(),
  699. opendir(), pipe(), socketpair(), sysopen(), socket(), and <A HREF="../../lib/Pod/perlfunc.html#item_accept"><CODE>accept())</CODE></A>
  700. automatically create an anonymous filehandle if the handle passed to
  701. them is an uninitialized scalar variable. This allows the constructs
  702. such as <A HREF="../../lib/Pod/perlfunc.html#item_open"><CODE>open(my $fh, ...)</CODE></A> and <A HREF="../../lib/Pod/perlfunc.html#item_open"><CODE>open(local $fh,...)</CODE></A> to be used to
  703. create filehandles that will conveniently be closed automatically when
  704. the scope ends, provided there are no other references to them. This
  705. largely eliminates the need for typeglobs when opening filehandles
  706. that must be passed around, as in the following example:</P>
  707. <PRE>
  708.     sub myopen {
  709.         open my $fh, "@_"
  710.              or die "Can't open '@_': $!";
  711.         return $fh;
  712.     }</PRE>
  713. <PRE>
  714.     {
  715.         my $f = myopen("</etc/motd");
  716.         print <$f>;
  717.         # $f implicitly closed here
  718.     }</PRE>
  719. <P>Another way to create anonymous filehandles is with the Symbol
  720. module or with the IO::Handle module and its ilk.  These modules
  721. have the advantage of not hiding different types of the same name
  722. during the local().  See the bottom of <A HREF="../../lib/Pod/perlfunc.html#open()">open() in the perlfunc manpage</A> for an
  723. example.</P>
  724. <P>
  725. <HR>
  726. <H1><A NAME="see also">SEE ALSO</A></H1>
  727. <P>See <A HREF="../../lib/Pod/perlvar.html">the perlvar manpage</A> for a description of Perl's built-in variables and
  728. a discussion of legal variable names.  See <A HREF="../../lib/Pod/perlref.html">the perlref manpage</A>, <A HREF="../../lib/Pod/perlsub.html">the perlsub manpage</A>,
  729. and <A HREF="../../lib/Pod/perlmod.html#symbol tables">Symbol Tables in the perlmod manpage</A> for more discussion on typeglobs and
  730. the <CODE>*foo{THING}</CODE> syntax.</P>
  731. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  732. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  733. <STRONG><P CLASS=block> perldata - Perl data types</P></STRONG>
  734. </TD></TR>
  735. </TABLE>
  736.  
  737. </BODY>
  738.  
  739. </HTML>
  740.