Patient ones:

Perl surprised me again this morning. I wanted to *copy* an anonymous hash by dereferencing it, and then creating a new reference to it, leaving me with two references to two different hashes. So I did:

my $this = { 'name' => 'alex' }; my $that = \%{ $this }; # now i thought that $that would be an independent copy, but: $that->{'name'} = 'madonna'; print $this->{'name'}; # oh no! i'm madonna! they both referenced the same thing

This surprised me, because I thought dereferencing would make it just a 'free-floating' anonymous hash. This works fine, but is an extra line:

my $this = { 'name' => 'alex' }; my %that = %{ $this }; my $that = \%that; # now $that really is an independent copy, and: $that->{'name'} = 'madonna'; print $this->{'name'}; #alex # phew! I'm still me!

My questions are: 1) why does this happen like this? I don't really see what the difference is between the first and the second code sample. What subtlety am I missing? 2) Is there a neater way of writing the second sample, which does what I want, without using the throwaway named hash %that?

with thanks

/=\

In reply to hash dereferencing / copying by ViceRaid

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.