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

Re^2: Need help on hashes.

by quester (Vicar)
on Feb 04, 2008 at 04:07 UTC ( [id://665898]=note: print w/replies, xml ) Need Help??


in reply to Re: Need help on hashes.
in thread Need help on hashes.

Actually, no, it isn't necessary to include that if statement.

Incrementing an undef value is such a common annoyance that recent releases of perl special-case it. It seems to have been documented somewhere between version 5.004 and 5.8.8. Quoting directly from perlop, which is currently for version 5.10.0,

The auto-increment operator has a little extra builtin magic to it....

undef is always treated as numeric, and in particular is changed to 0 before incrementing (so that a post-increment of an undef value will return 0 rather than undef).

(Update:) Now that I think of it, the conversion to boolean in

if ($countries{$entries[1]}) ...
is also a special case: undef is being silently converted to false, even when using warnings and strict. If it weren't, you would have to say
if (defined ($countries{$entries[1]})) ...
which would also be fairly annoying.

Replies are listed 'Best First'.
Re^3: Need help on hashes.
by Errto (Vicar) on Feb 04, 2008 at 19:53 UTC

    It's funny, I've gotten so accustomed to this behavior I'd stopped thinking of it as a special case, though I think you could make an argument that it the behavior itself isn't actually, though maybe the lack of warning is.

    Let's be clear about what we mean by "recent" though. The behavior is both present and documented in Perl 5.00503 which was released in 1999.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (6)
As of 2024-03-28 12:10 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found