http://qs321.pair.com?node_id=671057


in reply to Curious about Hashes which viewed as a list has only one item

It's a key, with the undefined value as its corresponding value. If you have warnings enabled you'll get a warning "Odd number of elements in hash assignment"

If you use that hash in list context you'll get a list of a single element which contains that string HASH... By the way, note that it is a string, it's not an actual reference. The reason is that in Perl, hash keys are always treated as strings; other scalars (numbers, references, undef) are stringified when you use them as a hash key.

  • Comment on Re: Curious about Hashes which viewed as a list has only one item

Replies are listed 'Best First'.
Re^2: Curious about Hashes which viewed as a list has only one item
by ack (Deacon) on Feb 29, 2008 at 05:28 UTC

    Thanks, errto. That was what I suspected would be the case. So do I understand correctly that if I were to do something like:

    print "yep" if(defined $foo{HASH(xxx)});

    then I'd not expect any print? (The xxx is the stringified octal code in the pre-stringified reference)

    Also, thanks for the note on the stringified reference. I remember well (from having made the erroneous assumption quite a few times) that the key is just the stringified version of the reference and is not, itself, a referene.

    Again, thanks for the info...it really helped.

    ack Albuquerque, NM
      Well, for one thing if you were actually writing that literally you'd have to put the HASH(xxx) bit in quotes. But you're correct, that statement would not print anything. But if you changed defined to exists, then it would print yep because that key is really present in the hash.