This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perldiag: rewording
[perl5.git] / pod / perltrap.pod
CommitLineData
a0d0e21e
LW
1=head1 NAME
2
3perltrap - Perl traps for the unwary
4
5=head1 DESCRIPTION
6
9fda99eb
DC
7The biggest trap of all is forgetting to C<use warnings> or use the B<-w>
8switch; see L<perllexwarn> and L<perlrun>. The second biggest trap is not
9making your entire program runnable under C<use strict>. The third biggest
10trap is not reading the list of changes in this version of Perl; see
11L<perldelta>.
a0d0e21e
LW
12
13=head2 Awk Traps
14
15Accustomed B<awk> users should take special note of the following:
16
17=over 4
18
19=item *
20
6014d0cb
MS
21A Perl program executes only once, not once for each input line. You can
22do an implicit loop with C<-n> or C<-p>.
23
24=item *
25
a0d0e21e
LW
26The English module, loaded via
27
28 use English;
29
54310121 30allows you to refer to special variables (like C<$/>) with names (like
19799a22 31$RS), as though they were in B<awk>; see L<perlvar> for details.
a0d0e21e
LW
32
33=item *
34
35Semicolons are required after all simple statements in Perl (except
36at the end of a block). Newline is not a statement delimiter.
37
38=item *
39
40Curly brackets are required on C<if>s and C<while>s.
41
42=item *
43
5db417f7 44Variables begin with "$", "@" or "%" in Perl.
a0d0e21e
LW
45
46=item *
47
48Arrays index from 0. Likewise string positions in substr() and
49index().
50
51=item *
52
53You have to decide whether your array has numeric or string indices.
54
55=item *
56
aa689395 57Hash values do not spring into existence upon mere reference.
a0d0e21e
LW
58
59=item *
60
61You have to decide whether you want to use string or numeric
62comparisons.
63
64=item *
65
66Reading an input line does not split it for you. You get to split it
54310121 67to an array yourself. And the split() operator has different
68arguments than B<awk>'s.
a0d0e21e
LW
69
70=item *
71
72The current input line is normally in $_, not $0. It generally does
73not have the newline stripped. ($0 is the name of the program
74executed.) See L<perlvar>.
75
76=item *
77
c47ff5f1 78$<I<digit>> does not refer to fields--it refers to substrings matched
8b0a4b75 79by the last match pattern.
a0d0e21e
LW
80
81=item *
82
83The print() statement does not add field and record separators unless
8b0a4b75 84you set C<$,> and C<$\>. You can set $OFS and $ORS if you're using
a0d0e21e
LW
85the English module.
86
87=item *
88
89You must open your files before you print to them.
90
91=item *
92
93The range operator is "..", not comma. The comma operator works as in
94C.
95
96=item *
97
98The match operator is "=~", not "~". ("~" is the one's complement
99operator, as in C.)
100
101=item *
102
103The exponentiation operator is "**", not "^". "^" is the XOR
104operator, as in C. (You know, one could get the feeling that B<awk> is
105basically incompatible with C.)
106
107=item *
108
109The concatenation operator is ".", not the null string. (Using the
5f05dabc 110null string would render C</pat/ /pat/> unparsable, because the third slash
111would be interpreted as a division operator--the tokenizer is in fact
c47ff5f1 112slightly context sensitive for operators like "/", "?", and ">".
a0d0e21e
LW
113And in fact, "." itself can be the beginning of a number.)
114
115=item *
116
117The C<next>, C<exit>, and C<continue> keywords work differently.
118
119=item *
120
121
122The following variables work differently:
123
124 Awk Perl
9fda99eb 125 ARGC scalar @ARGV (compare with $#ARGV)
a0d0e21e
LW
126 ARGV[0] $0
127 FILENAME $ARGV
128 FNR $. - something
129 FS (whatever you like)
130 NF $#Fld, or some such
131 NR $.
132 OFMT $#
133 OFS $,
134 ORS $\
135 RLENGTH length($&)
136 RS $/
137 RSTART length($`)
138 SUBSEP $;
139
140=item *
141
142You cannot set $RS to a pattern, only a string.
143
144=item *
145
146When in doubt, run the B<awk> construct through B<a2p> and see what it
147gives you.
148
149=back
150
6ec4bd10 151=head2 C/C++ Traps
a0d0e21e 152
6ec4bd10 153Cerebral C and C++ programmers should take note of the following:
a0d0e21e
LW
154
155=over 4
156
157=item *
158
159Curly brackets are required on C<if>'s and C<while>'s.
160
161=item *
162
163You must use C<elsif> rather than C<else if>.
164
165=item *
166
6ec4bd10
MS
167The C<break> and C<continue> keywords from C become in Perl C<last>
168and C<next>, respectively. Unlike in C, these do I<not> work within a
169C<do { } while> construct. See L<perlsyn/"Loop Control">.
a0d0e21e
LW
170
171=item *
172
cabc01fc
ML
173The switch statement is called C<given/when> and only available in
174perl 5.10 or newer. See L<perlsyn/"Switch statements">.
a0d0e21e
LW
175
176=item *
177
5db417f7 178Variables begin with "$", "@" or "%" in Perl.
a0d0e21e
LW
179
180=item *
181
6014d0cb
MS
182Comments begin with "#", not "/*" or "//". Perl may interpret C/C++
183comments as division operators, unterminated regular expressions or
184the defined-or operator.
a0d0e21e
LW
185
186=item *
187
188You can't take the address of anything, although a similar operator
5f05dabc 189in Perl is the backslash, which creates a reference.
a0d0e21e
LW
190
191=item *
192
4633a7c4
LW
193C<ARGV> must be capitalized. C<$ARGV[0]> is C's C<argv[1]>, and C<argv[0]>
194ends up in C<$0>.
a0d0e21e
LW
195
196=item *
197
198System calls such as link(), unlink(), rename(), etc. return nonzero for
9fda99eb 199success, not 0. (system(), however, returns zero for success.)
a0d0e21e
LW
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
6014d0cb
MS
216A Perl program executes only once, not once for each input line. You can
217do an implicit loop with C<-n> or C<-p>.
218
219=item *
220
a0d0e21e
LW
221Backreferences in substitutions use "$" rather than "\".
222
223=item *
224
225The pattern matching metacharacters "(", ")", and "|" do not have backslashes
226in front.
227
228=item *
229
230The range operator is C<...>, rather than comma.
231
232=back
233
234=head2 Shell Traps
235
236Sharp shell programmers should take note of the following:
237
238=over 4
239
240=item *
241
54310121 242The backtick operator does variable interpolation without regard to
a0d0e21e
LW
243the presence of single quotes in the command.
244
245=item *
246
54310121 247The backtick operator does no translation of the return value, unlike B<csh>.
a0d0e21e
LW
248
249=item *
250
251Shells (especially B<csh>) do several levels of substitution on each
5f05dabc 252command line. Perl does substitution in only certain constructs
54310121 253such as double quotes, backticks, angle brackets, and search patterns.
a0d0e21e
LW
254
255=item *
256
257Shells interpret scripts a little bit at a time. Perl compiles the
258entire program before executing it (except for C<BEGIN> blocks, which
259execute at compile time).
260
261=item *
262
263The arguments are available via @ARGV, not $1, $2, etc.
264
265=item *
266
267The environment is not automatically made available as separate scalar
268variables.
269
8886331d
NC
270=item *
271
272The shell's C<test> uses "=", "!=", "<" etc for string comparisons and "-eq",
273"-ne", "-lt" etc for numeric comparisons. This is the reverse of Perl, which
274uses C<eq>, C<ne>, C<lt> for string comparisons, and C<==>, C<!=> C<< < >> etc
275for numeric comparisons.
276
a0d0e21e
LW
277=back
278
279=head2 Perl Traps
280
281Practicing Perl Programmers should take note of the following:
282
283=over 4
284
285=item *
286
287Remember that many operations behave differently in a list
288context than they do in a scalar one. See L<perldata> for details.
289
290=item *
291
68dc0745 292Avoid barewords if you can, especially all lowercase ones.
54310121 293You can't tell by just looking at it whether a bareword is
294a function or a string. By using quotes on strings and
5f05dabc 295parentheses on function calls, you won't ever get them confused.
a0d0e21e
LW
296
297=item *
298
54310121 299You cannot discern from mere inspection which builtins
300are unary operators (like chop() and chdir())
a0d0e21e 301and which are list operators (like print() and unlink()).
9fda99eb
DC
302(Unless prototyped, user-defined subroutines can B<only> be list
303operators, never unary ones.) See L<perlop> and L<perlsub>.
a0d0e21e
LW
304
305=item *
306
748a9306 307People have a hard time remembering that some functions
a0d0e21e 308default to $_, or @ARGV, or whatever, but that others which
54310121 309you might expect to do not.
a0d0e21e 310
6dbacca0 311=item *
a0d0e21e 312
c47ff5f1 313The <FH> construct is not the name of the filehandle, it is a readline
5f05dabc 314operation on that handle. The data read is assigned to $_ only if the
748a9306
LW
315file read is the sole condition in a while loop:
316
317 while (<FH>) { }
54310121 318 while (defined($_ = <FH>)) { }..
748a9306
LW
319 <FH>; # data discarded!
320
6dbacca0 321=item *
748a9306 322
19799a22 323Remember not to use C<=> when you need C<=~>;
a0d0e21e
LW
324these two constructs are quite different:
325
326 $x = /foo/;
327 $x =~ /foo/;
328
329=item *
330
54310121 331The C<do {}> construct isn't a real loop that you can use
a0d0e21e
LW
332loop control on.
333
334=item *
335
54310121 336Use C<my()> for local variables whenever you can get away with
337it (but see L<perlform> for where you can't).
338Using C<local()> actually gives a local value to a global
a0d0e21e
LW
339variable, which leaves you open to unforeseen side-effects
340of dynamic scoping.
341
c07a80fd 342=item *
343
344If you localize an exported variable in a module, its exported value will
345not change. The local name becomes an alias to a new value but the
346external name is still an alias for the original.
347
a0d0e21e
LW
348=back
349
5f05dabc 350=head2 Perl4 to Perl5 Traps
a0d0e21e 351
54310121 352Practicing Perl4 Programmers should take note of the following
6dbacca0 353Perl4-to-Perl5 specific traps.
354
355They're crudely ordered according to the following list:
a0d0e21e
LW
356
357=over 4
358
6dbacca0 359=item Discontinuance, Deprecation, and BugFix traps
a0d0e21e 360
6dbacca0 361Anything that's been fixed as a perl4 bug, removed as a perl4 feature
362or deprecated as a perl4 feature with the intent to encourage usage of
363some other perl5 feature.
a0d0e21e 364
6dbacca0 365=item Parsing Traps
748a9306 366
6dbacca0 367Traps that appear to stem from the new parser.
a0d0e21e 368
6dbacca0 369=item Numerical Traps
a0d0e21e 370
6dbacca0 371Traps having to do with numerical or mathematical operators.
a0d0e21e 372
6dbacca0 373=item General data type traps
a0d0e21e 374
6dbacca0 375Traps involving perl standard data types.
a0d0e21e 376
6dbacca0 377=item Context Traps - scalar, list contexts
378
379Traps related to context within lists, scalar statements/declarations.
380
381=item Precedence Traps
382
383Traps related to the precedence of parsing, evaluation, and execution of
384code.
385
386=item General Regular Expression Traps using s///, etc.
387
388Traps related to the use of pattern matching.
389
390=item Subroutine, Signal, Sorting Traps
391
392Traps related to the use of signals and signal handlers, general subroutines,
393and sorting, along with sorting subroutines.
394
395=item OS Traps
396
397OS-specific traps.
398
399=item DBM Traps
400
401Traps specific to the use of C<dbmopen()>, and specific dbm implementations.
402
403=item Unclassified Traps
404
405Everything else.
406
407=back
408
409If you find an example of a conversion trap that is not listed here,
4375e838 410please submit it to <F<perlbug@perl.org>> for inclusion.
9f1b1f2d
GS
411Also note that at least some of these can be caught with the
412C<use warnings> pragma or the B<-w> switch.
6dbacca0 413
414=head2 Discontinuance, Deprecation, and BugFix traps
415
416Anything that has been discontinued, deprecated, or fixed as
54310121 417a bug from perl4.
a0d0e21e 418
6dbacca0 419=over 4
420
d52dc02a 421=item * Symbols starting with "_" no longer forced into main
6dbacca0 422
423Symbols starting with "_" are no longer forced into package main, except
424for C<$_> itself (and C<@_>, etc.).
425
426 package test;
427 $_legacy = 1;
cb1a09d0 428
6dbacca0 429 package main;
430 print "\$_legacy is ",$_legacy,"\n";
54310121 431
6dbacca0 432 # perl4 prints: $_legacy is 1
433 # perl5 prints: $_legacy is
434
d52dc02a 435=item * Double-colon valid package separator in variable name
6dbacca0 436
437Double-colon is now a valid package separator in a variable name. Thus these
5f05dabc 438behave differently in perl4 vs. perl5, because the packages don't exist.
6dbacca0 439
440 $a=1;$b=2;$c=3;$var=4;
441 print "$a::$b::$c ";
cb1a09d0 442 print "$var::abc::xyz\n";
c47ff5f1 443
6dbacca0 444 # perl4 prints: 1::2::3 4::abc::xyz
445 # perl5 prints: 3
cb1a09d0 446
6dbacca0 447Given that C<::> is now the preferred package delimiter, it is debatable
448whether this should be classed as a bug or not.
449(The older package delimiter, ' ,is used here)
cb1a09d0 450
4358a253
SS
451 $x = 10;
452 print "x=${'x}\n";
54310121 453
6dbacca0 454 # perl4 prints: x=10
455 # perl5 prints: Can't find string terminator "'" anywhere before EOF
a0d0e21e 456
5e77893f
MG
457You can avoid this problem, and remain compatible with perl4, if you
458always explicitly include the package name:
459
4358a253
SS
460 $x = 10;
461 print "x=${main'x}\n";
5e77893f 462
54310121 463Also see precedence traps, for parsing C<$:>.
a0d0e21e 464
d52dc02a 465=item * 2nd and 3rd args to C<splice()> are now in scalar context
a0d0e21e 466
6dbacca0 467The second and third arguments of C<splice()> are now evaluated in scalar
468context (as the Camel says) rather than list context.
a0d0e21e 469
1d2dff63
GS
470 sub sub1{return(0,2) } # return a 2-element list
471 sub sub2{ return(1,2,3)} # return a 3-element list
54310121 472 @a1 = ("a","b","c","d","e");
6dbacca0 473 @a2 = splice(@a1,&sub1,&sub2);
474 print join(' ',@a2),"\n";
54310121 475
6dbacca0 476 # perl4 prints: a b
54310121 477 # perl5 prints: c d e
a0d0e21e 478
d52dc02a 479=item * Can't do C<goto> into a block that is optimized away
a0d0e21e 480
6dbacca0 481You can't do a C<goto> into a block that is optimized away. Darn.
a0d0e21e 482
6dbacca0 483 goto marker1;
a0d0e21e 484
54310121 485 for(1){
6dbacca0 486 marker1:
487 print "Here I is!\n";
54310121 488 }
489
6dbacca0 490 # perl4 prints: Here I is!
9fda99eb 491 # perl5 errors: Can't "goto" into the middle of a foreach loop
6dbacca0 492
d52dc02a 493=item * Can't use whitespace as variable name or quote delimiter
6dbacca0 494
495It is no longer syntactically legal to use whitespace as the name
496of a variable, or as a delimiter for any kind of quote construct.
54310121 497Double darn.
6dbacca0 498
499 $a = ("foo bar");
c64db6b5 500 $b = q baz ;
6dbacca0 501 print "a is $a, b is $b\n";
54310121 502
6dbacca0 503 # perl4 prints: a is foo bar, b is baz
54310121 504 # perl5 errors: Bareword found where operator expected
5e378fdf 505
d52dc02a 506=item * C<while/if BLOCK BLOCK> gone
6dbacca0 507
508The archaic while/if BLOCK BLOCK syntax is no longer supported.
509
510 if { 1 } {
511 print "True!";
512 }
513 else {
514 print "False!";
515 }
54310121 516
6dbacca0 517 # perl4 prints: True!
518 # perl5 errors: syntax error at test.pl line 1, near "if {"
519
d52dc02a 520=item * C<**> binds tighter than unary minus
6dbacca0 521
522The C<**> operator now binds more tightly than unary minus.
523It was documented to work this way before, but didn't.
524
525 print -4**2,"\n";
54310121 526
6dbacca0 527 # perl4 prints: 16
528 # perl5 prints: -16
529
d52dc02a 530=item * C<foreach> changed when iterating over a list
6dbacca0 531
532The meaning of C<foreach{}> has changed slightly when it is iterating over a
533list which is not an array. This used to assign the list to a
534temporary array, but no longer does so (for efficiency). This means
535that you'll now be iterating over the actual values, not over copies of
536the values. Modifications to the loop variable can change the original
537values.
538
539 @list = ('ab','abc','bcd','def');
540 foreach $var (grep(/ab/,@list)){
541 $var = 1;
542 }
543 print (join(':',@list));
54310121 544
6dbacca0 545 # perl4 prints: ab:abc:bcd:def
546 # perl5 prints: 1:1:bcd:def
547
548To retain Perl4 semantics you need to assign your list
54310121 549explicitly to a temporary array and then iterate over that. For
6dbacca0 550example, you might need to change
551
552 foreach $var (grep(/ab/,@list)){
553
554to
555
556 foreach $var (@tmp = grep(/ab/,@list)){
557
558Otherwise changing $var will clobber the values of @list. (This most often
559happens when you use C<$_> for the loop variable, and call subroutines in
560the loop that don't properly localize C<$_>.)
561
d52dc02a 562=item * C<split> with no args behavior changed
5e378fdf 563
564C<split> with no arguments now behaves like C<split ' '> (which doesn't
565return an initial null field if $_ starts with whitespace), it used to
566behave like C<split /\s+/> (which does).
567
568 $_ = ' hi mom';
569 print join(':', split);
570
571 # perl4 prints: :hi:mom
572 # perl5 prints: hi:mom
573
d52dc02a 574=item * B<-e> behavior fixed
55497cff 575
9607fc9c 576Perl 4 would ignore any text which was attached to an B<-e> switch,
55497cff 577always taking the code snippet from the following arg. Additionally, it
9607fc9c 578would silently accept an B<-e> switch without a following arg. Both of
55497cff 579these behaviors have been fixed.
580
581 perl -e'print "attached to -e"' 'print "separate arg"'
54310121 582
55497cff 583 # perl4 prints: separate arg
584 # perl5 prints: attached to -e
54310121 585
55497cff 586 perl -e
587
588 # perl4 prints:
589 # perl5 dies: No code specified for -e.
590
d52dc02a 591=item * C<push> returns number of elements in resulting list
55497cff 592
593In Perl 4 the return value of C<push> was undocumented, but it was
594actually the last value being pushed onto the target list. In Perl 5
595the return value of C<push> is documented, but has changed, it is the
596number of elements in the resulting list.
597
598 @x = ('existing');
599 print push(@x, 'first new', 'second new');
54310121 600
55497cff 601 # perl4 prints: second new
602 # perl5 prints: 3
603
d52dc02a 604=item * Some error messages differ
6dbacca0 605
606Some error messages will be different.
607
d52dc02a 608=item * C<split()> honors subroutine args
6dbacca0 609
46836f5c
GS
610In Perl 4, if in list context the delimiters to the first argument of
611C<split()> were C<??>, the result would be placed in C<@_> as well as
612being returned. Perl 5 has more respect for your subroutine arguments.
613
d52dc02a 614=item * Bugs removed
46836f5c 615
6dbacca0 616Some bugs may have been inadvertently removed. :-)
617
618=back
619
620=head2 Parsing Traps
621
622Perl4-to-Perl5 traps from having to do with parsing.
623
624=over 4
625
d52dc02a 626=item * Space between . and = triggers syntax error
6dbacca0 627
628Note the space between . and =
629
630 $string . = "more string";
631 print $string;
54310121 632
6dbacca0 633 # perl4 prints: more string
634 # perl5 prints: syntax error at - line 1, near ". ="
635
d52dc02a 636=item * Better parsing in perl 5
6dbacca0 637
638Better parsing in perl 5
639
640 sub foo {}
641 &foo
642 print("hello, world\n");
54310121 643
6dbacca0 644 # perl4 prints: hello, world
645 # perl5 prints: syntax error
646
d52dc02a 647=item * Function parsing
6dbacca0 648
649"if it looks like a function, it is a function" rule.
650
651 print
652 ($foo == 1) ? "is one\n" : "is zero\n";
54310121 653
6dbacca0 654 # perl4 prints: is zero
655 # perl5 warns: "Useless use of a constant in void context" if using -w
656
d52dc02a 657=item * String interpolation of C<$#array> differs
c12982c8
GS
658
659String interpolation of the C<$#array> construct differs when braces
660are to used around the name.
661
9fda99eb 662 @a = (1..3);
c12982c8
GS
663 print "${#a}";
664
665 # perl4 prints: 2
666 # perl5 fails with syntax error
667
5ad17214 668 @a = (1..3);
c12982c8
GS
669 print "$#{a}";
670
671 # perl4 prints: {a}
672 # perl5 prints: 2
673
ba0dd969 674=item * Perl guesses on C<map>, C<grep> followed by C<{> if it starts BLOCK or hash ref
bf1f8817
RB
675
676When perl sees C<map {> (or C<grep {>), it has to guess whether the C<{>
677starts a BLOCK or a hash reference. If it guesses wrong, it will report
678a syntax error near the C<}> and the missing (or unexpected) comma.
679
680Use unary C<+> before C<{> on a hash reference, and unary C<+> applied
681to the first thing in a BLOCK (after C<{>), for perl to guess right all
682the time. (See L<perlfunc/map>.)
683
6dbacca0 684=back
685
686=head2 Numerical Traps
687
688Perl4-to-Perl5 traps having to do with numerical operators,
689operands, or output from same.
690
691=over 5
692
d52dc02a 693=item * Formatted output and significant digits
6dbacca0 694
a9709c40
AS
695Formatted output and significant digits. In general, Perl 5
696tries to be more precise. For example, on a Solaris Sparc:
6dbacca0 697
698 print 7.373504 - 0, "\n";
54310121 699 printf "%20.18f\n", 7.373504 - 0;
700
6dbacca0 701 # Perl4 prints:
a9709c40
AS
702 7.3750399999999996141
703 7.375039999999999614
54310121 704
6dbacca0 705 # Perl5 prints:
706 7.373504
0f2dddf9 707 7.373503999999999614
a9709c40
AS
708
709Notice how the first result looks better in Perl 5.
710
711Your results may vary, since your floating point formatting routines
712and even floating point format may be slightly different.
6dbacca0 713
d52dc02a 714=item * Auto-increment operator over signed int limit deleted
6dbacca0 715
5f05dabc 716This specific item has been deleted. It demonstrated how the auto-increment
5e378fdf 717operator would not catch when a number went over the signed int limit. Fixed
a6006777 718in version 5.003_04. But always be wary when using large integers.
719If in doubt:
6dbacca0 720
5e378fdf 721 use Math::BigInt;
6dbacca0 722
ba0dd969 723=item * Assignment of return values from numeric equality tests doesn't work
6dbacca0 724
725Assignment of return values from numeric equality tests
726does not work in perl5 when the test evaluates to false (0).
d1be9408 727Logical tests now return a null, instead of 0
a6006777 728
6dbacca0 729 $p = ($test == 1);
730 print $p,"\n";
a6006777 731
6dbacca0 732 # perl4 prints: 0
733 # perl5 prints:
734
dc848c6f 735Also see L<"General Regular Expression Traps using s///, etc.">
736for another example of this new feature...
6dbacca0 737
651ad3b1
GS
738=item * Bitwise string ops
739
740When bitwise operators which can operate upon either numbers or
741strings (C<& | ^ ~>) are given only strings as arguments, perl4 would
742treat the operands as bitstrings so long as the program contained a call
743to the C<vec()> function. perl5 treats the string operands as bitstrings.
744(See L<perlop/Bitwise String Operators> for more details.)
745
746 $fred = "10";
747 $barney = "12";
748 $betty = $fred & $barney;
749 print "$betty\n";
750 # Uncomment the next line to change perl4's behavior
751 # ($dummy) = vec("dummy", 0, 0);
752
753 # Perl4 prints:
754 8
755
756 # Perl5 prints:
757 10
758
759 # If vec() is used anywhere in the program, both print:
760 10
761
6dbacca0 762=back
763
764=head2 General data type traps
765
766Perl4-to-Perl5 traps involving most data-types, and their usage
767within certain expressions and/or context.
768
769=over 5
770
d52dc02a 771=item * Negative array subscripts now count from the end of array
6dbacca0 772
773Negative array subscripts now count from the end of the array.
774
775 @a = (1, 2, 3, 4, 5);
776 print "The third element of the array is $a[3] also expressed as $a[-2] \n";
54310121 777
6dbacca0 778 # perl4 prints: The third element of the array is 4 also expressed as
779 # perl5 prints: The third element of the array is 4 also expressed as 4
780
d52dc02a 781=item * Setting C<$#array> lower now discards array elements
6dbacca0 782
783Setting C<$#array> lower now discards array elements, and makes them
784impossible to recover.
785
54310121 786 @a = (a,b,c,d,e);
6dbacca0 787 print "Before: ",join('',@a);
54310121 788 $#a =1;
6dbacca0 789 print ", After: ",join('',@a);
790 $#a =3;
791 print ", Recovered: ",join('',@a),"\n";
54310121 792
6dbacca0 793 # perl4 prints: Before: abcde, After: ab, Recovered: abcd
794 # perl5 prints: Before: abcde, After: ab, Recovered: ab
795
d52dc02a 796=item * Hashes get defined before use
6dbacca0 797
798Hashes get defined before use
799
54310121 800 local($s,@a,%h);
6dbacca0 801 die "scalar \$s defined" if defined($s);
802 die "array \@a defined" if defined(@a);
803 die "hash \%h defined" if defined(%h);
54310121 804
6dbacca0 805 # perl4 prints:
806 # perl5 dies: hash %h defined
807
475342a6
GS
808Perl will now generate a warning when it sees defined(@a) and
809defined(%h).
810
d52dc02a 811=item * Glob assignment from localized variable to variable
6dbacca0 812
813glob assignment from variable to variable will fail if the assigned
814variable is localized subsequent to the assignment
815
816 @a = ("This is Perl 4");
817 *b = *a;
818 local(@a);
819 print @b,"\n";
54310121 820
6dbacca0 821 # perl4 prints: This is Perl 4
822 # perl5 prints:
54310121 823
d52dc02a 824=item * Assigning C<undef> to glob
54310121 825
a3cb178b
GS
826Assigning C<undef> to a glob has no effect in Perl 5. In Perl 4
827it undefines the associated scalar (but may have other side effects
9fda99eb
DC
828including SEGVs). Perl 5 will also warn if C<undef> is assigned to a
829typeglob. (Note that assigning C<undef> to a typeglob is different
830than calling the C<undef> function on a typeglob (C<undef *foo>), which
831has quite a few effects.
832
833 $foo = "bar";
834 *foo = undef;
835 print $foo;
836
837 # perl4 prints:
838 # perl4 warns: "Use of uninitialized variable" if using -w
839 # perl5 prints: bar
840 # perl5 warns: "Undefined value assigned to typeglob" if using -w
5e378fdf 841
d52dc02a 842=item * Changes in unary negation (of strings)
6dbacca0 843
844Changes in unary negation (of strings)
845This change effects both the return value and what it
846does to auto(magic)increment.
847
848 $x = "aaa";
849 print ++$x," : ";
850 print -$x," : ";
851 print ++$x,"\n";
54310121 852
6dbacca0 853 # perl4 prints: aab : -0 : 1
854 # perl5 prints: aab : -aab : aac
855
d52dc02a 856=item * Modifying of constants prohibited
6dbacca0 857
858perl 4 lets you modify constants:
859
860 $foo = "x";
861 &mod($foo);
862 for ($x = 0; $x < 3; $x++) {
863 &mod("a");
864 }
865 sub mod {
866 print "before: $_[0]";
867 $_[0] = "m";
868 print " after: $_[0]\n";
869 }
54310121 870
6dbacca0 871 # perl4:
872 # before: x after: m
873 # before: a after: m
874 # before: m after: m
875 # before: m after: m
54310121 876
6dbacca0 877 # Perl5:
878 # before: x after: m
879 # Modification of a read-only value attempted at foo.pl line 12.
880 # before: a
881
d52dc02a 882=item * C<defined $var> behavior changed
6dbacca0 883
884The behavior is slightly different for:
885
886 print "$x", defined $x
54310121 887
6dbacca0 888 # perl 4: 1
889 # perl 5: <no output, $x is not called into existence>
890
d52dc02a 891=item * Variable Suicide
6dbacca0 892
893Variable suicide behavior is more consistent under Perl 5.
aa689395 894Perl5 exhibits the same behavior for hashes and scalars,
5f05dabc 895that perl4 exhibits for only scalars.
6dbacca0 896
897 $aGlobal{ "aKey" } = "global value";
898 print "MAIN:", $aGlobal{"aKey"}, "\n";
899 $GlobalLevel = 0;
900 &test( *aGlobal );
901
902 sub test {
903 local( *theArgument ) = @_;
904 local( %aNewLocal ); # perl 4 != 5.001l,m
54310121 905 $aNewLocal{"aKey"} = "this should never appear";
6dbacca0 906 print "SUB: ", $theArgument{"aKey"}, "\n";
907 $aNewLocal{"aKey"} = "level $GlobalLevel"; # what should print
908 $GlobalLevel++;
909 if( $GlobalLevel<4 ) {
910 &test( *aNewLocal );
911 }
912 }
54310121 913
6dbacca0 914 # Perl4:
915 # MAIN:global value
916 # SUB: global value
917 # SUB: level 0
918 # SUB: level 1
919 # SUB: level 2
54310121 920
6dbacca0 921 # Perl5:
922 # MAIN:global value
923 # SUB: global value
924 # SUB: this should never appear
925 # SUB: this should never appear
926 # SUB: this should never appear
927
84dc3c4d 928=back
6dbacca0 929
930=head2 Context Traps - scalar, list contexts
931
932=over 5
933
d52dc02a 934=item * Elements of argument lists for formats evaluated in list context
6dbacca0 935
936The elements of argument lists for formats are now evaluated in list
937context. This means you can interpolate list values now.
938
939 @fmt = ("foo","bar","baz");
940 format STDOUT=
941 @<<<<< @||||| @>>>>>
942 @fmt;
943 .
54310121 944 write;
945
6dbacca0 946 # perl4 errors: Please use commas to separate fields in file
947 # perl5 prints: foo bar baz
948
d52dc02a 949=item * C<caller()> returns false value in scalar context if no caller present
6dbacca0 950
54310121 951The C<caller()> function now returns a false value in a scalar context
952if there is no caller. This lets library files determine if they're
6dbacca0 953being required.
954
955 caller() ? (print "You rang?\n") : (print "Got a 0\n");
54310121 956
6dbacca0 957 # perl4 errors: There is no caller
958 # perl5 prints: Got a 0
5e378fdf 959
d52dc02a 960=item * Comma operator in scalar context gives scalar context to args
6dbacca0 961
962The comma operator in a scalar context is now guaranteed to give a
28c5c15c
IG
963scalar context to its last argument. It gives scalar or void context
964to any preceding arguments, depending on circumstances.
6dbacca0 965
966 @y= ('a','b','c');
967 $x = (1, 2, @y);
968 print "x = $x\n";
54310121 969
28c5c15c
IG
970 # Perl4 prints: x = c # Interpolates array @y into the list
971 # Perl5 prints: x = 3 # Evaluates array @y in scalar context
6dbacca0 972
d52dc02a 973=item * C<sprintf()> prototyped as C<($;@)>
6dbacca0 974
9fda99eb
DC
975C<sprintf()> is prototyped as ($;@), so its first argument is given scalar
976context. Thus, if passed an array, it will probably not do what you want,
977unlike Perl 4:
6dbacca0 978
979 @z = ('%s%s', 'foo', 'bar');
980 $x = sprintf(@z);
9fda99eb 981 print $x;
54310121 982
9fda99eb
DC
983 # perl4 prints: foobar
984 # perl5 prints: 3
6dbacca0 985
9fda99eb 986C<printf()> works the same as it did in Perl 4, though:
6dbacca0 987
9fda99eb 988 @z = ('%s%s', 'foo', 'bar');
6dbacca0 989 printf STDOUT (@z);
54310121 990
6dbacca0 991 # perl4 prints: foobar
992 # perl5 prints: foobar
993
6dbacca0 994=back
995
996=head2 Precedence Traps
997
998Perl4-to-Perl5 traps involving precedence order.
999
f4b17341
GS
1000Perl 4 has almost the same precedence rules as Perl 5 for the operators
1001that they both have. Perl 4 however, seems to have had some
1002inconsistencies that made the behavior differ from what was documented.
1003
84dc3c4d 1004=over 5
1005
d52dc02a 1006=item * LHS vs. RHS of any assignment operator
5e378fdf 1007
8dbef698
JM
1008LHS vs. RHS of any assignment operator. LHS is evaluated first
1009in perl4, second in perl5; this can affect the relationship
1010between side-effects in sub-expressions.
5e378fdf 1011
1012 @arr = ( 'left', 'right' );
1013 $a{shift @arr} = shift @arr;
1014 print join( ' ', keys %a );
1015
1016 # perl4 prints: left
1017 # perl5 prints: right
1018
d52dc02a 1019=item * Semantic errors introduced due to precedence
6dbacca0 1020
1021These are now semantic errors because of precedence:
1022
1023 @list = (1,2,3,4,5);
1024 %map = ("a",1,"b",2,"c",3,"d",4);
1025 $n = shift @list + 2; # first item in list plus 2
1026 print "n is $n, ";
1027 $m = keys %map + 2; # number of items in hash plus 2
1028 print "m is $m\n";
54310121 1029
6dbacca0 1030 # perl4 prints: n is 3, m is 6
1031 # perl5 errors and fails to compile
1032
d52dc02a 1033=item * Precedence of assignment operators same as the precedence of assignment
a0d0e21e 1034
4633a7c4
LW
1035The precedence of assignment operators is now the same as the precedence
1036of assignment. Perl 4 mistakenly gave them the precedence of the associated
1037operator. So you now must parenthesize them in expressions like
1038
1039 /foo/ ? ($a += 2) : ($a -= 2);
a6006777 1040
4633a7c4
LW
1041Otherwise
1042
6dbacca0 1043 /foo/ ? $a += 2 : $a -= 2
4633a7c4
LW
1044
1045would be erroneously parsed as
1046
1047 (/foo/ ? $a += 2 : $a) -= 2;
1048
1049On the other hand,
1050
54310121 1051 $a += /foo/ ? 1 : 2;
4633a7c4
LW
1052
1053now works as a C programmer would expect.
1054
d52dc02a 1055=item * C<open> requires parentheses around filehandle
4633a7c4 1056
6dbacca0 1057 open FOO || die;
a0d0e21e 1058
5f05dabc 1059is now incorrect. You need parentheses around the filehandle.
1060Otherwise, perl5 leaves the statement as its default precedence:
a0d0e21e 1061
6dbacca0 1062 open(FOO || die);
54310121 1063
6dbacca0 1064 # perl4 opens or dies
9fda99eb 1065 # perl5 opens FOO, dying only if 'FOO' is false, i.e. never
a0d0e21e 1066
d52dc02a 1067=item * C<$:> precedence over C<$::> gone
a0d0e21e 1068
6dbacca0 1069perl4 gives the special variable, C<$:> precedence, where perl5
1070treats C<$::> as main C<package>
a0d0e21e 1071
6dbacca0 1072 $a = "x"; print "$::a";
54310121 1073
6dbacca0 1074 # perl 4 prints: -:a
1075 # perl 5 prints: x
5e378fdf 1076
d52dc02a 1077=item * Precedence of file test operators documented
a0d0e21e 1078
f4b17341
GS
1079perl4 had buggy precedence for the file test operators vis-a-vis
1080the assignment operators. Thus, although the precedence table
1081for perl4 leads one to believe C<-e $foo .= "q"> should parse as
1082C<((-e $foo) .= "q")>, it actually parses as C<(-e ($foo .= "q"))>.
1083In perl5, the precedence is as documented.
54310121 1084
1085 -e $foo .= "q"
a0d0e21e 1086
6dbacca0 1087 # perl4 prints: no output
1088 # perl5 prints: Can't modify -e in concatenation
a0d0e21e 1089
d52dc02a 1090=item * C<keys>, C<each>, C<values> are regular named unary operators
f4b17341
GS
1091
1092In perl4, keys(), each() and values() were special high-precedence operators
1093that operated on a single hash, but in perl5, they are regular named unary
1094operators. As documented, named unary operators have lower precedence
1095than the arithmetic and concatenation operators C<+ - .>, but the perl4
1096variants of these operators actually bind tighter than C<+ - .>.
1097Thus, for:
1098
1099 %foo = 1..10;
1100 print keys %foo - 1
1101
1102 # perl4 prints: 4
1103 # perl5 prints: Type of arg 1 to keys must be hash (not subtraction)
1104
1105The perl4 behavior was probably more useful, if less consistent.
1106
6dbacca0 1107=back
1108
1109=head2 General Regular Expression Traps using s///, etc.
1110
1111All types of RE traps.
1112
1113=over 5
1114
d52dc02a 1115=item * C<s'$lhs'$rhs'> interpolates on either side
6dbacca0 1116
1117C<s'$lhs'$rhs'> now does no interpolation on either side. It used to
19799a22 1118interpolate $lhs but not $rhs. (And still does not match a literal
6dbacca0 1119'$' in string)
1120
1121 $a=1;$b=2;
1122 $string = '1 2 $a $b';
1123 $string =~ s'$a'$b';
1124 print $string,"\n";
54310121 1125
6dbacca0 1126 # perl4 prints: $b 2 $a $b
1127 # perl5 prints: 1 2 $a $b
1128
d52dc02a 1129=item * C<m//g> attaches its state to the searched string
a0d0e21e
LW
1130
1131C<m//g> now attaches its state to the searched string rather than the
6dbacca0 1132regular expression. (Once the scope of a block is left for the sub, the
1133state of the searched string is lost)
1134
1135 $_ = "ababab";
1136 while(m/ab/g){
1137 &doit("blah");
1138 }
1139 sub doit{local($_) = shift; print "Got $_ "}
54310121 1140
9fda99eb 1141 # perl4 prints: Got blah Got blah Got blah Got blah
6dbacca0 1142 # perl5 prints: infinite loop blah...
1143
d52dc02a 1144=item * C<m//o> used within an anonymous sub
6dbacca0 1145
68dc0745 1146Currently, if you use the C<m//o> qualifier on a regular expression
1147within an anonymous sub, I<all> closures generated from that anonymous
1148sub will use the regular expression as it was compiled when it was used
1149the very first time in any such closure. For instance, if you say
1150
1151 sub build_match {
1152 my($left,$right) = @_;
1153 return sub { $_[0] =~ /$left stuff $right/o; };
1154 }
9fda99eb
DC
1155 $good = build_match('foo','bar');
1156 $bad = build_match('baz','blarch');
1157 print $good->('foo stuff bar') ? "ok\n" : "not ok\n";
1158 print $bad->('baz stuff blarch') ? "ok\n" : "not ok\n";
1159 print $bad->('foo stuff bar') ? "not ok\n" : "ok\n";
1160
1161For most builds of Perl5, this will print:
1162ok
1163not ok
1164not ok
68dc0745 1165
1166build_match() will always return a sub which matches the contents of
19799a22 1167$left and $right as they were the I<first> time that build_match()
68dc0745 1168was called, not as they are in the current call.
1169
d52dc02a 1170=item * C<$+> isn't set to whole match
68dc0745 1171
6dbacca0 1172If no parentheses are used in a match, Perl4 sets C<$+> to
1173the whole match, just like C<$&>. Perl5 does not.
1174
1175 "abcdef" =~ /b.*e/;
1176 print "\$+ = $+\n";
54310121 1177
6dbacca0 1178 # perl4 prints: bcde
1179 # perl5 prints:
1180
d52dc02a 1181=item * Substitution now returns null string if it fails
6dbacca0 1182
1183substitution now returns the null string if it fails
1184
1185 $string = "test";
1186 $value = ($string =~ s/foo//);
1187 print $value, "\n";
54310121 1188
6dbacca0 1189 # perl4 prints: 0
1190 # perl5 prints:
1191
1192Also see L<Numerical Traps> for another example of this new feature.
1193
d52dc02a 1194=item * C<s`lhs`rhs`> is now a normal substitution
6dbacca0 1195
54310121 1196C<s`lhs`rhs`> (using backticks) is now a normal substitution, with no
1197backtick expansion
6dbacca0 1198
1199 $string = "";
1200 $string =~ s`^`hostname`;
1201 print $string, "\n";
54310121 1202
6dbacca0 1203 # perl4 prints: <the local hostname>
1204 # perl5 prints: hostname
1205
d52dc02a 1206=item * Stricter parsing of variables in regular expressions
6dbacca0 1207
1208Stricter parsing of variables used in regular expressions
1209
1210 s/^([^$grpc]*$grpc[$opt$plus$rep]?)//o;
54310121 1211
6dbacca0 1212 # perl4: compiles w/o error
1213 # perl5: with Scalar found where operator expected ..., near "$opt$plus"
1214
1215an added component of this example, apparently from the same script, is
1216the actual value of the s'd string after the substitution.
1217C<[$opt]> is a character class in perl4 and an array subscript in perl5
1218
54310121 1219 $grpc = 'a';
6dbacca0 1220 $opt = 'r';
1221 $_ = 'bar';
1222 s/^([^$grpc]*$grpc[$opt]?)/foo/;
4358a253 1223 print;
54310121 1224
6dbacca0 1225 # perl4 prints: foo
1226 # perl5 prints: foobar
1227
d52dc02a 1228=item * C<m?x?> matches only once
6dbacca0 1229
1230Under perl5, C<m?x?> matches only once, like C<?x?>. Under perl4, it matched
1231repeatedly, like C</x/> or C<m!x!>.
1232
1233 $test = "once";
1234 sub match { $test =~ m?once?; }
1235 &match();
1236 if( &match() ) {
1237 # m?x? matches more then once
1238 print "perl4\n";
54310121 1239 } else {
6dbacca0 1240 # m?x? matches only once
54310121 1241 print "perl5\n";
6dbacca0 1242 }
54310121 1243
6dbacca0 1244 # perl4 prints: perl4
1245 # perl5 prints: perl5
a0d0e21e 1246
d52dc02a 1247=item * Failed matches don't reset the match variables
665e98b9
JH
1248
1249Unlike in Ruby, failed matches in Perl do not reset the match variables
1250($1, $2, ..., C<$`>, ...).
a0d0e21e 1251
6dbacca0 1252=back
1253
1254=head2 Subroutine, Signal, Sorting Traps
a0d0e21e 1255
6dbacca0 1256The general group of Perl4-to-Perl5 traps having to do with
1257Signals, Sorting, and their related subroutines, as well as
1258general subroutine traps. Includes some OS-Specific traps.
a0d0e21e 1259
6dbacca0 1260=over 5
a0d0e21e 1261
ba0dd969 1262=item * Barewords that used to look like strings look like subroutine calls
a0d0e21e 1263
6dbacca0 1264Barewords that used to look like strings to Perl will now look like subroutine
1265calls if a subroutine by that name is defined before the compiler sees them.
a0d0e21e 1266
6dbacca0 1267 sub SeeYa { warn"Hasta la vista, baby!" }
1268 $SIG{'TERM'} = SeeYa;
1269 print "SIGTERM is now $SIG{'TERM'}\n";
54310121 1270
9fda99eb
DC
1271 # perl4 prints: SIGTERM is now main'SeeYa
1272 # perl5 prints: SIGTERM is now main::1 (and warns "Hasta la vista, baby!")
a0d0e21e 1273
6dbacca0 1274Use B<-w> to catch this one
a0d0e21e 1275
d52dc02a 1276=item * Reverse is no longer allowed as the name of a sort subroutine
a0d0e21e 1277
6dbacca0 1278reverse is no longer allowed as the name of a sort subroutine.
a0d0e21e 1279
6dbacca0 1280 sub reverse{ print "yup "; $a <=> $b }
9fda99eb 1281 print sort reverse (2,1,3);
54310121 1282
9fda99eb
DC
1283 # perl4 prints: yup yup 123
1284 # perl5 prints: 123
1285 # perl5 warns (if using -w): Ambiguous call resolved as CORE::reverse()
a0d0e21e 1286
d52dc02a 1287=item * C<warn()> won't let you specify a filehandle.
b996531f 1288
1289Although it _always_ printed to STDERR, warn() would let you specify a
1290filehandle in perl4. With perl5 it does not.
5e378fdf 1291
1292 warn STDERR "Foo!";
1293
1294 # perl4 prints: Foo!
54310121 1295 # perl5 prints: String found where operator expected
5e378fdf 1296
6dbacca0 1297=back
a0d0e21e 1298
6dbacca0 1299=head2 OS Traps
1300
1301=over 5
1302
d52dc02a 1303=item * SysV resets signal handler correctly
6dbacca0 1304
54310121 1305Under HPUX, and some other SysV OSes, one had to reset any signal handler,
1306within the signal handler function, each time a signal was handled with
1307perl4. With perl5, the reset is now done correctly. Any code relying
6dbacca0 1308on the handler _not_ being reset will have to be reworked.
1309
a6006777 1310Since version 5.002, Perl uses sigaction() under SysV.
6dbacca0 1311
1312 sub gotit {
54310121 1313 print "Got @_... ";
1314 }
6dbacca0 1315 $SIG{'INT'} = 'gotit';
54310121 1316
6dbacca0 1317 $| = 1;
1318 $pid = fork;
1319 if ($pid) {
1320 kill('INT', $pid);
1321 sleep(1);
1322 kill('INT', $pid);
54310121 1323 } else {
6dbacca0 1324 while (1) {sleep(10);}
54310121 1325 }
1326
6dbacca0 1327 # perl4 (HPUX) prints: Got INT...
1328 # perl5 (HPUX) prints: Got INT... Got INT...
1329
d52dc02a 1330=item * SysV C<seek()> appends correctly
6dbacca0 1331
c47ff5f1 1332Under SysV OSes, C<seek()> on a file opened to append C<<< >> >>> now does
54310121 1333the right thing w.r.t. the fopen() manpage. e.g., - When a file is opened
6dbacca0 1334for append, it is impossible to overwrite information already in
1335the file.
1336
1337 open(TEST,">>seek.test");
4358a253 1338 $start = tell TEST;
6dbacca0 1339 foreach(1 .. 9){
1340 print TEST "$_ ";
1341 }
4358a253 1342 $end = tell TEST;
6dbacca0 1343 seek(TEST,$start,0);
1344 print TEST "18 characters here";
54310121 1345
6dbacca0 1346 # perl4 (solaris) seek.test has: 18 characters here
1347 # perl5 (solaris) seek.test has: 1 2 3 4 5 6 7 8 9 18 characters here
a0d0e21e 1348
a0d0e21e 1349
a0d0e21e 1350
6dbacca0 1351=back
a0d0e21e 1352
6dbacca0 1353=head2 Interpolation Traps
a0d0e21e 1354
8b0a4b75 1355Perl4-to-Perl5 traps having to do with how things get interpolated
1356within certain expressions, statements, contexts, or whatever.
1357
6dbacca0 1358=over 5
a0d0e21e 1359
d52dc02a 1360=item * C<@> always interpolates an array in double-quotish strings
a0d0e21e 1361
6dbacca0 1362@ now always interpolates an array in double-quotish strings.
1363
54310121 1364 print "To: someone@somewhere.com\n";
1365
6dbacca0 1366 # perl4 prints: To:someone@somewhere.com
8593bda5
GS
1367 # perl < 5.6.1, error : In string, @somewhere now must be written as \@somewhere
1368 # perl >= 5.6.1, warning : Possible unintended interpolation of @somewhere in string
6dbacca0 1369
d52dc02a 1370=item * Double-quoted strings may no longer end with an unescaped $
6dbacca0 1371
1fa58bec 1372Double-quoted strings may no longer end with an unescaped $.
6dbacca0 1373
1374 $foo = "foo$";
1fa58bec 1375 print "foo is $foo\n";
54310121 1376
1fa58bec 1377 # perl4 prints: foo is foo$
6dbacca0 1378 # perl5 errors: Final $ should be \$ or $name
1379
1380Note: perl5 DOES NOT error on the terminating @ in $bar
1381
ba0dd969 1382=item * Arbitrary expressions are evaluated inside braces within double quotes
a0d0e21e 1383
8b0a4b75 1384Perl now sometimes evaluates arbitrary expressions inside braces that occur
1385within double quotes (usually when the opening brace is preceded by C<$>
1386or C<@>).
1387
1388 @www = "buz";
1389 $foo = "foo";
1390 $bar = "bar";
1391 sub foo { return "bar" };
1392 print "|@{w.w.w}|${main'foo}|";
1393
1394 # perl4 prints: |@{w.w.w}|foo|
1395 # perl5 prints: |buz|bar|
1396
1397Note that you can C<use strict;> to ward off such trappiness under perl5.
1398
d52dc02a 1399=item * C<$$x> now tries to dereference $x
8b0a4b75 1400
9fda99eb
DC
1401The construct "this is $$x" used to interpolate the pid at that point, but
1402now tries to dereference $x. C<$$> by itself still works fine, however.
748a9306 1403
9fda99eb
DC
1404 $s = "a reference";
1405 $x = *s;
6dbacca0 1406 print "this is $$x\n";
748a9306 1407
6dbacca0 1408 # perl4 prints: this is XXXx (XXX is the current pid)
9fda99eb 1409 # perl5 prints: this is a reference
6dbacca0 1410
ba0dd969 1411=item * Creation of hashes on the fly with C<eval "EXPR"> requires protection
6dbacca0 1412
54310121 1413Creation of hashes on the fly with C<eval "EXPR"> now requires either both
1414C<$>'s to be protected in the specification of the hash name, or both curlies
6dbacca0 1415to be protected. If both curlies are protected, the result will be compatible
1416with perl4 and perl5. This is a very common practice, and should be changed
1417to use the block form of C<eval{}> if possible.
c07a80fd 1418
6dbacca0 1419 $hashname = "foobar";
1420 $key = "baz";
1421 $value = 1234;
1422 eval "\$$hashname{'$key'} = q|$value|";
1423 (defined($foobar{'baz'})) ? (print "Yup") : (print "Nope");
1424
1425 # perl4 prints: Yup
1426 # perl5 prints: Nope
1427
1428Changing
1429
1430 eval "\$$hashname{'$key'} = q|$value|";
c07a80fd 1431
1432to
1433
6dbacca0 1434 eval "\$\$hashname{'$key'} = q|$value|";
c07a80fd 1435
6dbacca0 1436causes the following result:
c07a80fd 1437
6dbacca0 1438 # perl4 prints: Nope
1439 # perl5 prints: Yup
c07a80fd 1440
6dbacca0 1441or, changing to
a0d0e21e 1442
6dbacca0 1443 eval "\$$hashname\{'$key'\} = q|$value|";
1444
1445causes the following result:
1446
1447 # perl4 prints: Yup
1448 # perl5 prints: Yup
1449 # and is compatible for both versions
1450
1451
d52dc02a 1452=item * Bugs in earlier perl versions
6dbacca0 1453
1454perl4 programs which unconsciously rely on the bugs in earlier perl versions.
1455
1456 perl -e '$bar=q/not/; print "This is $foo{$bar} perl5"'
54310121 1457
6dbacca0 1458 # perl4 prints: This is not perl5
1459 # perl5 prints: This is perl5
1460
d52dc02a 1461=item * Array and hash brackets during interpolation
6dbacca0 1462
418272e4
CW
1463You also have to be careful about array and hash brackets during
1464interpolation.
1465
1466 print "$foo["
1467
1468 perl 4 prints: [
1469 perl 5 prints: syntax error
6dbacca0 1470
1471 print "$foo{"
1472
1473 perl 4 prints: {
1474 perl 5 prints: syntax error
1475
418272e4
CW
1476Perl 5 is expecting to find an index or key name following the respective
1477brackets, as well as an ending bracket of the appropriate type. In order
1478to mimic the behavior of Perl 4, you must escape the bracket like so.
1479
1480 print "$foo\[";
1481 print "$foo\{";
1482
d52dc02a 1483=item * Interpolation of C<\$$foo{bar}>
6dbacca0 1484
d52dc02a 1485Similarly, watch out for: C<\$$foo{bar}>
6dbacca0 1486
9fda99eb 1487 $foo = "baz";
6dbacca0 1488 print "\$$foo{bar}\n";
54310121 1489
9fda99eb 1490 # perl4 prints: $baz{bar}
6dbacca0 1491 # perl5 prints: $
1492
9fda99eb
DC
1493Perl 5 is looking for C<$foo{bar}> which doesn't exist, but perl 4 is
1494happy just to expand $foo to "baz" by itself. Watch out for this
6dbacca0 1495especially in C<eval>'s.
1496
d52dc02a 1497=item * C<qq()> string passed to C<eval> will not find string terminator
6dbacca0 1498
1499C<qq()> string passed to C<eval>
1500
1501 eval qq(
1502 foreach \$y (keys %\$x\) {
1503 \$count++;
1504 }
1505 );
54310121 1506
6dbacca0 1507 # perl4 runs this ok
54310121 1508 # perl5 prints: Can't find string terminator ")"
a0d0e21e 1509
6dbacca0 1510=back
1511
1512=head2 DBM Traps
1513
1514General DBM traps.
1515
1516=over 5
1517
ba0dd969 1518=item * Perl5 must have been linked with same dbm/ndbm as the default for C<dbmopen()>
6dbacca0 1519
1520Existing dbm databases created under perl4 (or any other dbm/ndbm tool)
1521may cause the same script, run under perl5, to fail. The build of perl5
1522must have been linked with the same dbm/ndbm as the default for C<dbmopen()>
1523to function properly without C<tie>'ing to an extension dbm implementation.
1524
1525 dbmopen (%dbm, "file", undef);
1526 print "ok\n";
1527
1528 # perl4 prints: ok
1529 # perl5 prints: ok (IFF linked with -ldbm or -lndbm)
1530
1531
ba0dd969 1532=item * DBM exceeding limit on the key/value size will cause perl5 to exit immediately
6dbacca0 1533
1534Existing dbm databases created under perl4 (or any other dbm/ndbm tool)
1535may cause the same script, run under perl5, to fail. The error generated
1536when exceeding the limit on the key/value size will cause perl5 to exit
1537immediately.
1538
1539 dbmopen(DB, "testdb",0600) || die "couldn't open db! $!";
1540 $DB{'trap'} = "x" x 1024; # value too large for most dbm/ndbm
1541 print "YUP\n";
1542
1543 # perl4 prints:
1544 dbm store returned -1, errno 28, key "trap" at - line 3.
1545 YUP
1546
1547 # perl5 prints:
1548 dbm store returned -1, errno 28, key "trap" at - line 3.
a0d0e21e
LW
1549
1550=back
6dbacca0 1551
1552=head2 Unclassified Traps
1553
1554Everything else.
1555
84dc3c4d 1556=over 5
1557
5db417f7 1558=item * C<require>/C<do> trap using returned value
6dbacca0 1559
1560If the file doit.pl has:
1561
1562 sub foo {
1563 $rc = do "./do.pl";
1564 return 8;
54310121 1565 }
6dbacca0 1566 print &foo, "\n";
1567
1568And the do.pl file has the following single line:
1569
1570 return 3;
1571
1572Running doit.pl gives the following:
1573
1574 # perl 4 prints: 3 (aborts the subroutine early)
54310121 1575 # perl 5 prints: 8
6dbacca0 1576
1577Same behavior if you replace C<do> with C<require>.
1578
5db417f7
TB
1579=item * C<split> on empty string with LIMIT specified
1580
9fda99eb 1581 $string = '';
5db417f7
TB
1582 @list = split(/foo/, $string, 2)
1583
1584Perl4 returns a one element list containing the empty string but Perl5
1585returns an empty list.
1586
6dbacca0 1587=back
1588
54310121 1589As always, if any of these are ever officially declared as bugs,
6dbacca0 1590they'll be fixed and removed.
1591