This is my patch patch.1n for perl5.001.
[p5sagit/p5-mst-13.2.git] / pod / perltrap.pod
CommitLineData
a0d0e21e 1=head1 NAME
2
3perltrap - Perl traps for the unwary
4
5=head1 DESCRIPTION
6
7The biggest trap of all is forgetting to use the B<-w> switch;
8see L<perlrun>. Making your entire program runnable under
9
10 use strict;
11
12can help make your program more bullet-proof, but sometimes
13it's too annoying for quick throw-away programs.
14
15=head2 Awk Traps
16
17Accustomed B<awk> users should take special note of the following:
18
19=over 4
20
21=item *
22
23The English module, loaded via
24
25 use English;
26
27allows you to refer to special variables (like $RS) as
28though they were in B<awk>; see L<perlvar> for details.
29
30=item *
31
32Semicolons are required after all simple statements in Perl (except
33at the end of a block). Newline is not a statement delimiter.
34
35=item *
36
37Curly brackets are required on C<if>s and C<while>s.
38
39=item *
40
41Variables begin with "$" or "@" in Perl.
42
43=item *
44
45Arrays index from 0. Likewise string positions in substr() and
46index().
47
48=item *
49
50You have to decide whether your array has numeric or string indices.
51
52=item *
53
54Associative array values do not spring into existence upon mere
55reference.
56
57=item *
58
59You have to decide whether you want to use string or numeric
60comparisons.
61
62=item *
63
64Reading an input line does not split it for you. You get to split it
65yourself to an array. And split() operator has different
66arguments.
67
68=item *
69
70The current input line is normally in $_, not $0. It generally does
71not have the newline stripped. ($0 is the name of the program
72executed.) See L<perlvar>.
73
74=item *
75
76$<I<digit>> does not refer to fields--it refers to substrings matched by
77the last match pattern.
78
79=item *
80
81The print() statement does not add field and record separators unless
82you set C<$,> and C<$.>. You can set $OFS and $ORS if you're using
83the English module.
84
85=item *
86
87You must open your files before you print to them.
88
89=item *
90
91The range operator is "..", not comma. The comma operator works as in
92C.
93
94=item *
95
96The match operator is "=~", not "~". ("~" is the one's complement
97operator, as in C.)
98
99=item *
100
101The exponentiation operator is "**", not "^". "^" is the XOR
102operator, as in C. (You know, one could get the feeling that B<awk> is
103basically incompatible with C.)
104
105=item *
106
107The concatenation operator is ".", not the null string. (Using the
108null string would render C</pat/ /pat/> unparsable, since the third slash
109would be interpreted as a division operator--the tokener is in fact
110slightly context sensitive for operators like "/", "?", and ">".
111And in fact, "." itself can be the beginning of a number.)
112
113=item *
114
115The C<next>, C<exit>, and C<continue> keywords work differently.
116
117=item *
118
119
120The following variables work differently:
121
122 Awk Perl
123 ARGC $#ARGV or scalar @ARGV
124 ARGV[0] $0
125 FILENAME $ARGV
126 FNR $. - something
127 FS (whatever you like)
128 NF $#Fld, or some such
129 NR $.
130 OFMT $#
131 OFS $,
132 ORS $\
133 RLENGTH length($&)
134 RS $/
135 RSTART length($`)
136 SUBSEP $;
137
138=item *
139
140You cannot set $RS to a pattern, only a string.
141
142=item *
143
144When in doubt, run the B<awk> construct through B<a2p> and see what it
145gives you.
146
147=back
148
149=head2 C Traps
150
151Cerebral C programmers should take note of the following:
152
153=over 4
154
155=item *
156
157Curly brackets are required on C<if>'s and C<while>'s.
158
159=item *
160
161You must use C<elsif> rather than C<else if>.
162
163=item *
164
165The C<break> and C<continue> keywords from C become in
166Perl C<last> and C<next>, respectively.
167Unlike in C, these do I<NOT> work within a C<do { } while> construct.
168
169=item *
170
171There's no switch statement. (But it's easy to build one on the fly.)
172
173=item *
174
175Variables begin with "$" or "@" in Perl.
176
177=item *
178
179printf() does not implement the "*" format for interpolating
180field widths, but it's trivial to use interpolation of double-quoted
181strings to achieve the same effect.
182
183=item *
184
185Comments begin with "#", not "/*".
186
187=item *
188
189You can't take the address of anything, although a similar operator
190in Perl 5 is the backslash, which creates a reference.
191
192=item *
193
194C<ARGV> must be capitalized.
195
196=item *
197
198System calls such as link(), unlink(), rename(), etc. return nonzero for
199success, not 0.
200
201=item *
202
203Signal handlers deal with signal names, not numbers. Use C<kill -l>
204to find their names on your system.
205
206=back
207
208=head2 Sed Traps
209
210Seasoned B<sed> programmers should take note of the following:
211
212=over 4
213
214=item *
215
216Backreferences in substitutions use "$" rather than "\".
217
218=item *
219
220The pattern matching metacharacters "(", ")", and "|" do not have backslashes
221in front.
222
223=item *
224
225The range operator is C<...>, rather than comma.
226
227=back
228
229=head2 Shell Traps
230
231Sharp shell programmers should take note of the following:
232
233=over 4
234
235=item *
236
237The backtick operator does variable interpretation without regard to
238the presence of single quotes in the command.
239
240=item *
241
242The backtick operator does no translation of the return value, unlike B<csh>.
243
244=item *
245
246Shells (especially B<csh>) do several levels of substitution on each
247command line. Perl does substitution only in certain constructs
248such as double quotes, backticks, angle brackets, and search patterns.
249
250=item *
251
252Shells interpret scripts a little bit at a time. Perl compiles the
253entire program before executing it (except for C<BEGIN> blocks, which
254execute at compile time).
255
256=item *
257
258The arguments are available via @ARGV, not $1, $2, etc.
259
260=item *
261
262The environment is not automatically made available as separate scalar
263variables.
264
265=back
266
267=head2 Perl Traps
268
269Practicing Perl Programmers should take note of the following:
270
271=over 4
272
273=item *
274
275Remember that many operations behave differently in a list
276context than they do in a scalar one. See L<perldata> for details.
277
278=item *
279
280Avoid barewords if you can, especially all lower-case ones.
281You can't tell just by looking at it whether a bareword is
282a function or a string. By using quotes on strings and
283parens on function calls, you won't ever get them confused.
284
285=item *
286
287You cannot discern from mere inspection which built-ins
288are unary operators (like chop() and chdir())
289and which are list operators (like print() and unlink()).
290(User-defined subroutines can B<only> be list operators, never
291unary ones.) See L<perlop>.
292
293=item *
294
748a9306 295People have a hard time remembering that some functions
a0d0e21e 296default to $_, or @ARGV, or whatever, but that others which
297you might expect to do not.
298
299=item *
300
748a9306 301The <FH> construct is not the name of the filehandle, it is a readline
302operation on that handle. The data read is only assigned to $_ if the
303file read is the sole condition in a while loop:
304
305 while (<FH>) { }
306 while ($_ = <FH>) { }..
307 <FH>; # data discarded!
308
309=item *
310
a0d0e21e 311Remember not to use "C<=>" when you need "C<=~>";
312these two constructs are quite different:
313
314 $x = /foo/;
315 $x =~ /foo/;
316
317=item *
318
319The C<do {}> construct isn't a real loop that you can use
320loop control on.
321
322=item *
323
324Use my() for local variables whenever you can get away with
325it (but see L<perlform> for where you can't).
326Using local() actually gives a local value to a global
327variable, which leaves you open to unforeseen side-effects
328of dynamic scoping.
329
330=back
331
332=head2 Perl4 Traps
333
334Penitent Perl 4 Programmers should take note of the following
335incompatible changes that occurred between release 4 and release 5:
336
337=over 4
338
339=item *
340
341C<@> now always interpolates an array in double-quotish strings. Some programs
342may now need to use backslash to protect any C<@> that shouldn't interpolate.
343
344=item *
748a9306 345
a0d0e21e 346Barewords that used to look like strings to Perl will now look like subroutine
347calls if a subroutine by that name is defined before the compiler sees them.
348For example:
349
350 sub SeeYa { die "Hasta la vista, baby!" }
748a9306 351 $SIG{'QUIT'} = SeeYa;
a0d0e21e 352
353In Perl 4, that set the signal handler; in Perl 5, it actually calls the
354function! You may use the B<-w> switch to find such places.
355
356=item *
357
358Symbols starting with C<_> are no longer forced into package C<main>, except
359for $_ itself (and @_, etc.).
360
361=item *
362
363C<s'$lhs'$rhs'> now does no interpolation on either side. It used to
364interpolate C<$lhs> but not C<$rhs>.
365
366=item *
367
368The second and third arguments of splice() are now evaluated in scalar
369context (as the book says) rather than list context.
370
371=item *
372
373These are now semantic errors because of precedence:
374
375 shift @list + 20;
376 $n = keys %map + 20;
377
378Because if that were to work, then this couldn't:
379
380 sleep $dormancy + 20;
381
382=item *
383
384C<open FOO || die> is now incorrect. You need parens around the filehandle.
385While temporarily supported, using such a construct will
386generate a non-fatal (but non-suppressible) warning.
387
388=item *
389
390The elements of argument lists for formats are now evaluated in list
391context. This means you can interpolate list values now.
392
393=item *
394
395You can't do a C<goto> into a block that is optimized away. Darn.
396
397=item *
398
399It is no longer syntactically legal to use whitespace as the name
400of a variable, or as a delimiter for any kind of quote construct.
401Double darn.
402
403=item *
404
405The caller() function now returns a false value in a scalar context if there
406is no caller. This lets library files determine if they're being required.
407
408=item *
409
410C<m//g> now attaches its state to the searched string rather than the
411regular expression.
412
413=item *
414
415C<reverse> is no longer allowed as the name of a sort subroutine.
416
417=item *
418
419B<taintperl> is no longer a separate executable. There is now a B<-T>
420switch to turn on tainting when it isn't turned on automatically.
421
422=item *
423
424Double-quoted strings may no longer end with an unescaped C<$> or C<@>.
425
426=item *
427
428The archaic C<while/if> BLOCK BLOCK syntax is no longer supported.
429
430
431=item *
432
433Negative array subscripts now count from the end of the array.
434
435=item *
436
437The comma operator in a scalar context is now guaranteed to give a
438scalar context to its arguments.
439
440=item *
441
442The C<**> operator now binds more tightly than unary minus.
443It was documented to work this way before, but didn't.
444
445=item *
446
447Setting C<$#array> lower now discards array elements.
448
449=item *
450
451delete() is not guaranteed to return the old value for tie()d arrays,
452since this capability may be onerous for some modules to implement.
453
454=item *
455
748a9306 456The construct "this is $$x" used to interpolate the pid at that
457point, but now tries to dereference $x. C<$$> by itself still
458works fine, however.
459
460=item *
461
a0d0e21e 462Some error messages will be different.
463
464=item *
465
466Some bugs may have been inadvertently removed.
467
468=back