Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re: "or die" versus "|| die"

by perlhaq (Scribe)
on Jun 24, 2005 at 18:55 UTC ( [id://469793]=note: print w/replies, xml ) Need Help??


in reply to "or die" versus "|| die"

Like others have said, you're better off sticking with "or" except for those few cases where the || is necessary for precedence reasons. Familiarize yourself with the operator precendence chart in the "perlop" manual page, print it out and tape it to your monitor if you have to in the beginning (eventually you'll know it instinctively).
The few cases were I use || instead of "or" are constructions like these:
my $var = $cgi->param('foo') || $default{'foo'}; # assign default value if none given
my $var = $cgi->param('foo') || ''; # assign empty value if none given (to avoid warnings due to undef value)
if ($verbose and $bar || $baz) { print "starting job $job_num\n" }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://469793]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (8)
As of 2024-04-23 12:00 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found