http://qs1969.pair.com?node_id=362599

eXile has asked for the wisdom of the Perl Monks concerning the following question:

Hi,

just out of curiosity: If I print a hashref or arrayref like this:

my $aap = {}; my $noot = []; local $\="\n"; print $aap; print $noot; __END__ HASH(0x804d170) ARRAY(0x804d23c)
what are the numbers 0x804d170 and 0x804d23c exactly? Are they memory locations? Can I directly map this to something like /dev/mem, /dev/kmem or a coredump of the process (in case I make it dump core)?