Perl - Common gotchas? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T03:29:55Z http://stackoverflow.com/feeds/question/166653 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/166653/perl-common-gotchas 25 Perl - Common gotchas? Adam Bellaire 2008-10-03T12:50:08Z 2009-09-22T09:47:34Z <p>The question on <a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl">Hidden features of Perl</a> yielded at least <a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162249">one response</a> that could be regarded as either a feature or a mis-feature. It seemed logical to follow up with this question: what are common non-obvious mistakes in Perl? Things that seem like they ought to work, but don't.</p> <p>I won't give guidelines as to how to structure answers, or what's "too easy" to be considered a gotcha, since that's what the voting is for.</p> <h2>Table of Answers</h2> <p><strong>Syntax</strong></p> <ul> <li>General <ul> <li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas#166660">Single quotes instead of <code>::</code> in identifiers</a></li> <li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas#167418">Indirect object syntax</a></li> <li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas#166698">Confusing references with plain var types</a></li> </ul></li> <li>Filehandles <ul> <li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas#167342">Heredoc notation when using print with lexical filehandles</a></li> <li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas#167122">Printing to a lexical filehandle contained in a hash</a></li> <li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas#175231"><code>my</code> declarations should use parens around lists of variables</a></li> <li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas/549685#549685">Comparing strings with == and !=</a></li> </ul></li> </ul> <p><strong>Semantics/Language Features</strong></p> <ul> <li>General <ul> <li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas#167064"><code>do</code> is not a loop. You cannot <code>next</code>.</a></li> <li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas#166804">Using the /o modifier with a regex</a></li> <li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas/1037460#1037460">Forgetting that <code>readdir</code>'s results are not relative to the CWD</a></li> <li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas/1373613#1373613">Unary minus's interaction with strings</a></li> </ul></li> <li>Context <ul> <li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas#166702">Assignment to scalar from arrays vs. lists</a></li> <li><a href="http://stackoverflow.com/questions/146329/what-is-the-worst-gotcha-youve-experienced#146394">The glob() iterator</a> (On a different question)</li> <li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas#175224">Implicit returns in list context</a></li> <li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas#427595">Parenthesis changing the semantics of operators</a></li> <li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas/549324#549324">Calling context is propagated to return statements within functions</a></li> </ul></li> <li>Variables <ul> <li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas#166794">Auto-vivification</a></li> <li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas#166778">Can't localize exported variables without exporting the entire typeglob</a></li> <li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas#167410">Using multiple variables (of different types) with the same name</a></li> <li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas#167505"><code>while &lt;FH&gt;</code> does not localize <code>$_</code> automatically</a></li> <li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas#167219">The Variable That's Validly Zero</a> </li> <li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas#169373">Constants can be redefined</a></li> </ul></li> </ul> <p><strong>Debugging</strong></p> <ul> <li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas#175285">Warning: Use of uninitialized value in concatenation</a></li> </ul> <p><strong>Best Practices</strong></p> <ul> <li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas#166682">Forgetting to <code>use strict</code> and <code>use warnings</code> (or <code>use diagnostics</code>)</a></li> <li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas#169391">Misspelling variable names</a> (i.e., <code>use strict</code>, again)</li> </ul> <p><strong>Meta-Answers</strong></p> <ul> <li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas#168905">The perltrap manpage</a></li> <li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas#169443">Perl::Critic</a></li> </ul> <p>See Also: <a href="http://stackoverflow.com/questions/66117/aspnet-common-gotchas">ASP.NET - Common gotchas</a></p> http://stackoverflow.com/questions/166653/perl-common-gotchas/166660#166660 23 Answer by Adam Bellaire for Perl - Common gotchas? Adam Bellaire 2008-10-03T12:51:17Z 2009-02-13T12:20:47Z <p>The fact that single quotes can be used to replace :: in identifiers.</p> <p>Consider:</p> <pre><code>use strict; print "$foo"; #-- Won't compile under use strict print "$foo's fun!"; #-- Compiles just fine, refers to $foo::s </code></pre> <p>Leading to the following problem:</p> <pre><code>use strict; my $name = "John"; print "$name's name is '$name'"; # prints: # name is 'John' </code></pre> <p>The recommended way to avoid this is to use braces around your variable name:</p> <pre><code>print "${name}'s name is '$name'"; # John's name is 'John' </code></pre> <p>And also to <code>use warnings</code>, since it'll tell you about the use of the undefined variable <code>$name::s</code></p> http://stackoverflow.com/questions/166653/perl-common-gotchas/166682#166682 8 Answer by Vinko Vrsalovic for Perl - Common gotchas? Vinko Vrsalovic 2008-10-03T12:55:15Z 2008-10-04T10:33:32Z <p>The most common gotcha is to start your files with anything different than</p> <pre><code>use strict; use diagnostics; </code></pre> <p><a href="http://stackoverflow.com/users/19422/pjf">pjf</a> adds: Please be warned that diagnostics has a <em>significant</em> impact on performance. It slows program start-up, as it needs to load perldiag.pod, and until bleadperl as of a few weeks ago, it also slows and bloats regexps because it uses $&amp;. Using warnings and running <code>splain</code> on the results is recommended. </p> http://stackoverflow.com/questions/166653/perl-common-gotchas/166698#166698 8 Answer by Vinko Vrsalovic for Perl - Common gotchas? Vinko Vrsalovic 2008-10-03T12:58:20Z 2008-10-04T10:34:52Z <p>Confusing references and actual objects:</p> <pre><code>$a = [1,2,3,4]; print $a[0]; </code></pre> <p>(It should be one of $a->[0] (best), $$a[0], @{$a}[0] or @$a[0])</p> http://stackoverflow.com/questions/166653/perl-common-gotchas/166702#166702 12 Answer by Graeme Perrow for Perl - Common gotchas? Graeme Perrow 2008-10-03T12:59:04Z 2008-10-03T12:59:04Z <p>Assigning arrays to scalars makes no sense to me. For example:</p> <pre><code>$foo = ( 'a', 'b', 'c' ); </code></pre> <p>Assigns 'c' to $foo and throws the rest of the array away. This one is weirder:</p> <pre><code>@foo = ( 'a', 'b', 'c' ); $foo = @foo; </code></pre> <p>This looks like it should do the same thing as the first example, but instead it sets <code>$foo</code> to the <em>length</em> of <code>@foo</code>, so <code>$foo == 3</code>.</p> http://stackoverflow.com/questions/166653/perl-common-gotchas/166778#166778 3 Answer by Michael Carman for Perl - Common gotchas? Michael Carman 2008-10-03T13:15:12Z 2008-10-03T13:15:12Z <p>You can't localize exported variables unless you export the entire typeglob.</p> http://stackoverflow.com/questions/166653/perl-common-gotchas/166804#166804 3 Answer by Michael Carman for Perl - Common gotchas? Michael Carman 2008-10-03T13:20:30Z 2008-10-03T20:40:30Z <p>Using the <code>/o</code> modifier with a regex pattern stored in a variable.</p> <pre><code>m/$pattern/o </code></pre> <p>Specifying <code>/o</code> is a promise that <code>$pattern</code> won't change. Perl is smart enough to recognize whether or not it changed and recompile the regex conditionally, so there's no good reason to use <code>/o</code> anymore. Alternately, you can use <code>qr//</code> (e.g. if you're obsessed with avoiding the check).</p> http://stackoverflow.com/questions/166653/perl-common-gotchas/167064#167064 7 Answer by Axeman for Perl - Common gotchas? Axeman 2008-10-03T14:11:49Z 2008-10-03T14:11:49Z <pre><code>my $x = &lt;&gt;; do { next if $x !~ /TODO\s*[:-]/; ... } while ( $x ); </code></pre> <p><code>do</code> is not a loop. You cannot <code>next</code>. It's an instruction to perform a block it's the same thing as </p> <pre><code>$inc++ while &lt;&gt;; </code></pre> <p>Despite that it looks like a construction in the C family of languages.</p> http://stackoverflow.com/questions/166653/perl-common-gotchas/167122#167122 14 Answer by dland for Perl - Common gotchas? dland 2008-10-03T14:25:00Z 2008-10-03T14:25:00Z <p>You can print to a lexical filehandle: good.</p> <pre><code>print $out "hello, world\n"; </code></pre> <p>You then realise it might be nice to have a hash of filehandles:</p> <pre><code>my %out; open $out{ok}, '&gt;', 'ok.txt' or die "Could not open ok.txt for output: $!"; open $out{fail}, '&gt;', 'fail.txt' or die "Could not open fail.txt for output: $!"; </code></pre> <p>So far, so good. Now try to use them, and print to one or the other according to a condition:</p> <pre><code>my $where = (frobnitz() == 10) ? 'ok' : 'fail'; print $out{$where} "it worked!\n"; # it didn't: compile time error </code></pre> <p>You have to wrap the hash dereference in a pair of curlies:</p> <pre><code>print {$out{$where}} "it worked!\n"; # now it did </code></pre> <p>This is completely non-intuitive behaviour. If you didn't hear about this, or read it in the documentation I doubt you could figure it out on your own.</p> http://stackoverflow.com/questions/166653/perl-common-gotchas/167219#167219 4 Answer by RET for Perl - Common gotchas? RET 2008-10-03T14:44:12Z 2008-10-04T04:16:07Z <p>This gotcha is fixed in perl 5.10 - if you're lucky enough to be working somewhere that isn't allergic to upgrading things >:-(</p> <p>I speak of <b>The Variable That's Validly Zero.</b> You know, the one that causes unexpected results in clauses like:</p> <pre><code>unless ($x) { ... } $x ||= do { ... }; </code></pre> <p>Perl 5.10 has the //= or <b>defined-or</b> operator.</p> <p>This is particularly insidious when the valid zero is caused by some edge-condition that wasn't considered in testing before your code went to production...</p> http://stackoverflow.com/questions/166653/perl-common-gotchas/167342#167342 10 Answer by Michael Carman for Perl - Common gotchas? Michael Carman 2008-10-03T15:11:11Z 2008-10-03T15:11:11Z <p>Perl's DWIMmer struggles with <code>&lt;&lt;</code> (here-document) notation when using <code>print</code> with lexical filehandles:</p> <pre><code># here-doc print $fh &lt;&lt;EOT; foo EOT # here-doc, no interpolation print $fh &lt;&lt;'EOT'; foo EOT # bitshift, syntax error # Bareword "EOT" not allowed while "strict subs" in use print $fh&lt;&lt;EOT; foo EOT # bitshift, fatal error # Argument "EOT" isn't numeric... # Can't locate object method "foo" via package "EOT"... print $fh&lt;&lt;'EOT'; foo EOT </code></pre> <p>The solution is to either be careful to include whitespace between the filehandle and the <code>&lt;&lt;</code> or to disambiguate the filehandle by wrapping it in <code>{}</code> braces:</p> <pre><code>print {$fh}&lt;&lt;EOT; foo EOT </code></pre> http://stackoverflow.com/questions/166653/perl-common-gotchas/167410#167410 3 Answer by Michael Carman for Perl - Common gotchas? Michael Carman 2008-10-03T15:24:58Z 2008-10-03T15:24:58Z <p>If you're foolish enough to do so Perl will allow you to declare multiple variables with the same name:</p> <pre><code>my ($x, @x, %x); </code></pre> <p>Because Perl uses sigils to identify <em>context</em> rather than variable <em>type</em>, this almost guarantees confusion when later code uses the variables, particularly if <code>$x</code> is a reference:</p> <pre><code>$x[0] $x{key} $x-&gt;[0] $x-&gt;{key} @x[0,1] @x{'foo', 'bar'} @$x[0,1] @$x{'foo', 'bar'} ... </code></pre> http://stackoverflow.com/questions/166653/perl-common-gotchas/167418#167418 7 Answer by Dan for Perl - Common gotchas? Dan 2008-10-03T15:26:02Z 2008-10-03T15:26:02Z <p>I did this once:</p> <pre><code>my $object = new Some::Random::Class-&gt;new; </code></pre> <p>Took me <em>ages</em> to find the error. Indirect method syntax is <em>eeevil</em>.</p> http://stackoverflow.com/questions/166653/perl-common-gotchas/167505#167505 6 Answer by Michael Carman for Perl - Common gotchas? Michael Carman 2008-10-03T15:45:39Z 2008-10-06T14:03:06Z <p>Most of Perl's looping operators (<code>foreach</code>, <code>map</code>, <code>grep</code>) automatically localize <code>$_</code> but <code>while(&lt;FH&gt;)</code> doesn't. This can lead to strange action-at-a-distance.</p> http://stackoverflow.com/questions/166653/perl-common-gotchas/168905#168905 8 Answer by Michael Carman for Perl - Common gotchas? Michael Carman 2008-10-03T21:06:02Z 2008-10-03T21:06:02Z <p>The <a href="http://perldoc.perl.org/perltrap.html" rel="nofollow">perltrap</a> manpage lists many traps for the unwary organized by type.</p> http://stackoverflow.com/questions/166653/perl-common-gotchas/169373#169373 5 Answer by cwhite for Perl - Common gotchas? cwhite 2008-10-03T23:57:55Z 2008-10-03T23:57:55Z <p>Constants can be redefined. A simple way to accidentally redefine a constant is to define a constant as a reference.</p> <pre><code> use constant FOO =&gt; { bar =&gt; 1 }; ... my $hash = FOO; ... $hash-&gt;{bar} = 2; </code></pre> <p>Now FOO is {bar => 2};</p> <p>If you are using mod_perl (at least in 1.3) the new FOO value will persist until the module is refreshed.</p> http://stackoverflow.com/questions/166653/perl-common-gotchas/169391#169391 1 Answer by ceretullis for Perl - Common gotchas? ceretullis 2008-10-04T00:08:24Z 2008-10-04T00:08:24Z <p><strong>Misspelling variable names</strong>... I once spent an entire afternoon troubleshooting code that wasn't behaving correctly only to find a typo on a variable name, which is not an error in Perl, but rather the declaration of a new variable.</p> http://stackoverflow.com/questions/166653/perl-common-gotchas/169443#169443 12 Answer by pjf for Perl - Common gotchas? pjf 2008-10-04T00:45:50Z 2008-10-04T00:45:50Z <p>This is a meta-answer. A lot of nasty gotchas are caught by <a href="http://search.cpan.org/perldoc?Perl::Critic" rel="nofollow">Perl::Critic</a>, which you can install and run from the command line with the <a href="http://search.cpan.org/perldoc?perlcritic" rel="nofollow"><code>perlcritic</code></a> command, or (if you're happy to send your code across the Internet, and not be able to customise your options) via the <a href="http://perlcritic.com/" rel="nofollow">Perl::Critic website</a>.</p> <p><code>Perl::Critic</code> also provides references to Damian Conways <em>Perl Best Practices</em> book, including page numbers. So if you're too lazy to read the whole book, <code>Perl::Critic</code> can still tell you the bits you <em>should</em> be reading.</p> http://stackoverflow.com/questions/166653/perl-common-gotchas/175224#175224 4 Answer by Tobi Ronfort for Perl - Common gotchas? Tobi Ronfort 2008-10-06T17:06:03Z 2008-10-06T17:06:03Z <p>What values would you expect <strong>@_</strong> to contain in the following scenario?</p> <pre><code>sub foo { } # empty subroutine called in parameters bar( foo(), "The second parameter." ) ; </code></pre> <p>I would expect to receive in <em>bar</em>:</p> <pre><code>undef, "The second parameter." </code></pre> <p>But <strong>@_</strong> contains only the second parameter, at least when testing with perl 5.88. </p> http://stackoverflow.com/questions/166653/perl-common-gotchas/175231#175231 4 Answer by andy for Perl - Common gotchas? andy 2008-10-06T17:07:57Z 2008-10-06T17:07:57Z <h2>"my" declarations should use parens around lists of variables</h2> <pre><code>use strict; my $a = 1; mysub(); print "a is $a\n"; sub { my $b, $a; # gotcha! $a = 2; } </code></pre> <p>Prints <b>a is 2</b> because the my declaration only applied to $b (the mention of $a on that line simply didn't do anything). Note that this happens without warning even when "use strict" is in effect. <p> Adding "use warnings" (or the -w flag) improves things greatly with Perl saying <em>Parentheses missing around "my" list</em>. This shows, as many have already, why both the strict and warnings pragmas are always a good idea.</p> http://stackoverflow.com/questions/166653/perl-common-gotchas/175285#175285 5 Answer by andy for Perl - Common gotchas? andy 2008-10-06T17:24:34Z 2009-09-22T09:47:34Z <h2>Use of uninitialized value in concatenation...</h2> <p>This one drives me crazy. You have a print that includes a number of variables, like:</p> <pre><code>print "$label: $field1, $field2, $field3\n"; </code></pre> <p>And one of the variables is <b>undef</b>. You consider this a bug in your program -- that's why you were using the "strict" pragma. Perhaps your database schema allowed NULL in a field you didn't expect, or you forgot to initialize a variable, etc. But all the error message tells you is that an uninitialized value was encountered during a concat (.) operation. If only it told you the <em>name</em> of the variable that was uninitialized!</p> <p>Since perl doesn't want to print the variable name in the error message for some reason, you end up tracking it down by setting a breakpoint (to look at which variable is <b>undef</b>), or adding code to check for the condition. Very annoying when it only happens one time out of thousands in a CGI script and you can't recreate it easily.</p> http://stackoverflow.com/questions/166653/perl-common-gotchas/427595#427595 4 Answer by j_random_hacker for Perl - Common gotchas? j_random_hacker 2009-01-09T10:14:42Z 2009-02-15T13:34:38Z <p>Adding extra parentheses could never <strong>change the code's meaning</strong>, right? Right?</p> <pre><code>my @x = ( "A" x 5 ); # @x contains 1 element, "AAAAA" my @y = (("A") x 5 ); # @y contains 5 elements: "A", "A", "A", "A", "A" </code></pre> <p>Oh, that's right, this is Perl.</p> <p><strong>EDIT:</strong> Just for good measure, if <code>x</code> is being called in scalar context, then the parentheses don't matter after all:</p> <pre><code>my $z = ( "A" x 5 ); # $z contains "AAAAA" my $w = (("A") x 5 ); # $w contains "AAAAA" too </code></pre> <p><em>Intuitive.</em></p> http://stackoverflow.com/questions/166653/perl-common-gotchas/549324#549324 3 Answer by j_random_hacker for Perl - Common gotchas? j_random_hacker 2009-02-14T16:26:08Z 2009-04-17T13:41:38Z <p><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas/166702#166702">Graeme Perrow's answer</a> was good, but it gets even better!</p> <p>Given a typical function that returns a nice list in list context, you might well ask: What will it return in scalar context? (By "typical," I mean the common case in which the documentation doesn't say, and we assume it doesn't use any <code>wantarray</code> funny business. Maybe it's a function you wrote yourself.)</p> <pre><code>sub f { return ('a', 'b', 'c'); } sub g { my @x = ('a', 'b', 'c'); return @x; } my $x = f(); # $x is now 'c' my $y = g(); # $y is now 3 </code></pre> <p><strong>The context a function is called in is propagated to <code>return</code> statements in that function.</strong></p> <p>I guess the caller was wrong to want <em>a simple rule of thumb to enable efficient reasoning about code behaviour</em>. You're right, Perl, it's better for the caller's character to <em>grovel through the called function's source code each time</em>.</p> http://stackoverflow.com/questions/166653/perl-common-gotchas/549685#549685 3 Answer by Nathan Fellman for Perl - Common gotchas? Nathan Fellman 2009-02-14T19:51:53Z 2009-02-14T19:51:53Z <p>comparing strings using <code>==</code> and <code>!=</code> instead of <code>eq</code> and <code>ne</code>. For instance:</p> <pre><code>$x = "abc"; if ($x == "abc") { # do something } </code></pre> <p>Instead of:</p> <pre><code>$x = "abc"; if ($x eq "abc") { # do something } </code></pre> http://stackoverflow.com/questions/166653/perl-common-gotchas/1037460#1037460 0 Answer by Telemachus for Perl - Common gotchas? Telemachus 2009-06-24T10:05:05Z 2009-06-24T10:05:05Z <p>Forgetting to prepend the directory path to the results of <code>readdir</code> before doing tests on those results. Here's an example:</p> <pre><code>#!/usr/bin/env perl use strict; use warnings; opendir my $dh, '/path/to/directory/of/interest' or die "Can't open '/path/to/directory/of/interest for reading: [$!]"; my @files = readdir $dh; # Bad in many cases; see below # my @files = map { "/path/to/directory/of/interest/$_" } readdir $dh; closedir $dh or die "Can't close /path/to/directory/of/interest: [$!]"; for my $item (@files) { print "File: $item\n" if -f $item; # Nothing happens. No files? That's odd... } # Scratching head...let's see... use Data::Dumper; print Dumper @files; # Whoops, there it is... </code></pre> <p>This gotcha is mentioned in the documentation for <code>readdir</code>, but I think it's still a pretty common mistake.</p> http://stackoverflow.com/questions/166653/perl-common-gotchas/1373613#1373613 0 Answer by Chas. Owens for Perl - Common gotchas? Chas. Owens 2009-09-03T14:09:12Z 2009-09-03T14:09:12Z <p>Unary minus with <code>"foo"</code> creates <code>"-foo"</code>:</p> <pre><code>perl -le 'print -"foo" eq "-foo" ? "true" : "false"' </code></pre> <p>This only works if the first character matches <code>/[_a-zA-Z]/</code>. If the first character is a <code>"-"</code> then it changes the first character to a <code>"+"</code>, and if the first character is a <code>"+"</code> then it changes the first character to a <code>"-"</code>. If the first character matches <code>/[^-+_a-zA-Z]/</code> then it attempts to convert the string to a number and negates the result.</p> <pre><code>perl -le ' print -"foo"; print -"-foo"; print -"+foo"; print -"\x{e9}"; #e acute is not in the accepted range print -"5foo"; #same thing for 5 ' </code></pre> <p>The code above prints</p> <pre><code>-foo +foo -foo -0 -5 </code></pre> <p>This feature mostly exists to allow people to say things like</p> <pre><code>my %options = ( -depth =&gt; 5, -width =&gt; 2, -height =&gt; 3, ); </code></pre>