I thought that in your code, if $empty_hash{foo}{bar} did not exist, then print "'foo'->'bar' exists\n"; would not be executed.

Did you, in fact, try to run the code? You'll see that that print statement indeed will not be executed.

As for the workaround you suggest, no. Checking whether a certain key exists in a hash is not a workaround for checking whether a subkey exists somewhere deeper down you structure. Obviously if the key doesn't exist, this implies that the subkey doesn't exist, but if the key existst this tells us nothing about the existance of the subkey. Proof:

use strict; use warnings; use Data::Dumper; # Some arbitrary data my %earth = (); $earth{wind}{fire} = "water"; # Show me what we've got print Dumper \%earth; print "\n\n"; print "\nEarth has wind, wind has fire.\n" if exists $earth{wind}->{f +ire}; delete $earth{wind}{fire}; print "The fire is extinguised.\n" unless exists $earth{wind} +->{fire}; print "Yet earth still has wind.\n" if exists $earth{wind}; delete $earth{wind}; print "But the wind blows away.\n" unless exists $earth{wind} +; print Dumper \%earth; print "\n\n"; print "Relight that fire!\n" if exists $earth{wind}{fir +e}; # Autovivication happens here! print Dumper \%earth; print "\n\n";
$VAR1 = { 'wind' => { 'fire' => 'water' } }; Earth has wind, wind has fire. The fire is extinguised. Yet earth still has wind. But the wind blows away. $VAR1 = {}; $VAR1 = { 'wind' => {} };

The earliest moment where you autovivify elements in %flag_assignments is the print statement in this snippet:

if (defined $flag_assignments{$temp_key}) { print "KEY [$key] TK [$temp_key] TS [$temp_semester] FAS [$fla +g_assignments{$temp_key}{starrez}] FAA [$flag_assignments{$temp_key}{ +abbreviation}]\n"; }
And you have many more statements like that where you autovivicate in string interpolation. This is not in itself a bad thing, but it explains the behaviour you are seeing.


In reply to Re^3: Not meaning to add values to a hash by muba
in thread Not meaning to add values to a hash by stu96art

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.