Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
use strict;
use warnings;
use Data::Dumper;

my %h;
my $undef = undef;
$h{''}='test2';
$h{$undef} = 'test';

print Dumper (\%h);

Creates the following output:

$VAR1 = {
          '' => 'test'
        };

Why is this happening? I have Perl 5.12.3.

Thanks for your time.

share|improve this question

1 Answer

up vote 11 down vote accepted

All hash keys are strings. Non-string values used as hash keys are coerced to strings, and undef becomes '' in that context.

share|improve this answer
Thank you chaos. Is this somewhere in the Perl-documentation? – Birdy Jun 27 '12 at 15:05
3  
@Birdy: 'man perldata' (aka perldoc.perl.org/perldata.html) defines hashes as "unordered collections of scalar values indexed by their associated string key". Everything else follows from keys being strings, Perl's automatic type promotion and the behavior of undef. – chaos Jun 27 '12 at 15:07
Thanks for your time! – Birdy Jun 27 '12 at 15:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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