Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: Some "combined assignment operators" are exempt from "uninitialized value" warning. Is it documented anywhere?

by Eily (Monsignor)
on Sep 11, 2018 at 15:16 UTC ( [id://1222130]=note: print w/replies, xml ) Need Help??


in reply to Some "combined assignment operators" are exempt from "uninitialized value" warning. Is it documented anywhere?

You don't get a warning when undef is interpreted as the identity element of the operator. Or, in other words, when the following pattern isn't useless

my $value; while (condition) # or for loop { $value <op>= something; }
For example:
my $sum; $sum += $_ for @nums;
or
my $valid; while (<DATA>) { chomp; next if /INVALID/; $valid .= $_; }
And not setting the variable before the loop let's you tell if there were no valid lines at all, or if the only valid data was empty strings (or $sum will be undef rather than 0 if there are no numbers).

On the other hand you can use whatever values you want, this will never yield anything but 0:

my $product; $product *= $_ for @nums;
This can only be a mistake.

So this would tend towards "this a right thing to do", but I couldn't find the documentation either.

Edit: that was full of typos. I wrote "under" for "undef", "is" for "if" and "identify" for "identity". I hope I got them all...

  • Comment on Re: Some "combined assignment operators" are exempt from "uninitialized value" warning. Is it documented anywhere?
  • Select or Download Code

Replies are listed 'Best First'.
Re^2: Some "combined assignment operators" are exempt from "uninitialized value" warning. Is it documented anywhere?
by SuicideJunkie (Vicar) on Sep 11, 2018 at 17:39 UTC
    Here's one case where it won't be zero (undef instead), but it isn't very useful.
    >perl -e "use warnings; my @nums = (); my $prod; $prod *= $_ for @nums +; print $prod" Use of uninitialized value $prod in print at -e line 1.

Log In?
Username:
Password:

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

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

    No recent polls found