For fun, here's an example of using undef as a hash key.  It validates what Joost and Eimi Metamorphoumai have said, that as a key, an undef is equivalent to the empty string "":
#!/usr/bin/perl -w use strict; use warnings; use Data::Dumper; my $x; # $x is undef my $y; # $y is undef too my %hash; $hash{$x} = 123; # This will throw warnings, but both $hash{$x} and $hash{$y} are 123 printf "\$hash{\$x} = %s; \$hash{\$y} = %s\n", $hash{$x}, $hash{$y}; print "Keys of \$hash => %s\n", Dumper([keys %hash]); __END__ Output: Use of uninitialized value in hash element at x line 11. Use of uninitialized value in hash element at x line 11. Use of uninitialized value in hash element at x line 14. Use of uninitialized value in hash element at x line 14. $hash{$x} = 123; $hash{$y} = 123 Keys of $hash => $VAR1 = [ '' ];

s''(q.S:$/9=(T1';s;(..)(..);$..=substr+crypt($1,$2),2,3;eg;print$..$/

In reply to Re: undef as a key in a hash. by liverpole
in thread undef as a key in a hash. by fenLisesi

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.