vote up 3 vote down star
1

I have a fragment in this form:

my $a = $some_href->{$code}{'A'}; # a number or undef
my $b = $some_href->{$code}{'B'}; # a number or undef
$a = 0 unless defined($a);
$b = 0 unless defined($b);
my $total = $a + $b;

The reality is even more messy, since more than two variables are concerned.

What I really want to write is this:

my $total = $some_href->{$code}{'A'} + $some_href->{$code}{'B'};

and have undef correctly evaluate to 0 but I get these warnings in almost every run:

Use of uninitialized value in addition (+) at Stats.pm line 192.

What's the best way to make these messages go away?

NB: I 'use strict' and 'use warnings' if that s relevant.

flag

77% accept rate
It is relevant. In this case, you've enabled a warning that you don't care about. – jrockway Aug 29 at 15:14

5 Answers

vote up 9 vote down check

It's good that you're using strict and warnings. The purpose of warnings is to alert you when Perl sees behavior that's likely to be unintentional (and thus incorrect). When you're doing it deliberately, it's perfectly fine to disable the warning locally. undef is treated as 0 in numeric contexts. If you're okay with both having undefined values and having them evaluate to zero, just disable the warning:

my $total;
{
  no warnings 'uninitialized';
  $total = $some_href->{$code}{A} + $some_href->{$code}{B};
}

Note: Disable only the warnings you need to, and do so in the smallest scope possible.

If you're averse to disabling warnings, there are other options. As of Perl 5.10 you can use the // (defined-or) operator to set default values. Prior to that people often use the || (logical-or), but that can do the Wrong Thing for values that evaluate to false. The robust way to default values in pre-5.10 versions of Perl is to check if they're defined.

$x = $y // 42;             # 5.10+
$x = $y || 42;             # < 5.10 (fragile)
$x = defined $y ? $y : 42; # < 5.10 (robust)
link|flag
2  
Yes, "$y || 42" is fragile, but "$y || 0" is not quite as fragile. – Manni Aug 29 at 17:14
vote up 4 vote down
my $a = $some_href->{$code}{'A'} || 0;
my $b = $some_href->{$code}{'B'} || 0;
my $total = $a + $b;

In this case, it's OK to treat false values the same as undefined values because of your fallback value.

link|flag
This code doesn't quite do the same thing. It also turns the empty string, a defined value, into 0. That may not be what you want. – brian d foy Aug 29 at 21:12
I assumed, as he was adding them, it was in fact what he wanted. – glenn jackman Aug 30 at 2:34
vote up 3 vote down

As you are adding them, just filter out the undefs.

use List::Util 'sum';

my $total = sum (0, grep {defined} $some_href->{$code}{'A'}, $some_href->{$code}{'B'});

Or even

use List::Util 'sum';

my $total = sum (0, grep {defined} map {$some_href->{$code}{$_}} 'A', 'B');
link|flag
vote up 4 vote down

Like this:

my $total = ($some_href->{$code}{'A'} || 0) + ($some_href->{$code}{'B'} || 0);

Please, be careful with uninitialized variables in Perl. After some experience programmin it, I have sense that this feature is heavilly overused.

link|flag
What feature is overused? – Manni Aug 29 at 11:57
@Manni: The ability to operate with undefined values in the same way as with defined ones without runtime arrors. – Pavel Shved Aug 29 at 11:59
1  
I think that is a feature that is often not understood, but overused? – Manni Aug 29 at 12:04
vote up 4 vote down

You can turn off the “uninitialized” warning for a second:

my $a;
my $b = 1;
{
    no warnings 'uninitialized';
    my $c = $a+$b; # no warning
}
my $c = $a+$b; # warning

Or you can short-circuit to zero:

my $d = ($a||0)+$b; # no warning

Doesn’t look very nice to me though.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.