Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re^4: Autovivification sucking the life out of me

by shenme (Priest)
on Oct 14, 2005 at 07:11 UTC ( [id://500144]=note: print w/replies, xml ) Need Help??


in reply to Re^3: Autovivification sucking the life out of me
in thread Autovivification sucking the life out of me

A simpler example perhaps:
use strict; use warnings; my %foo = ( BAZ => 1 ); sub see_args { }; warn sprintf "at start: BAR '%s'\n", ! exists $foo{BAR} ? '<absent>' : ! defined $foo{BAR} ? '<und +ef>' : $foo{BAR}; # see_args( @foo{qw(BAR BAZ)} ); my @a = @foo{qw(BAR BAZ)}; warn sprintf "at end: BAR '%s'\n", ! exists $foo{BAR} ? '<absent>' : ! defined $foo{BAR} ? '<und +ef>' : $foo{BAR};

Running this without the subroutine call, but rather the assignment to the array, results in output:

at start: BAR '<absent>' at end: BAR '<absent>'
That is, using the slice @foo{qw(BAR BAZ)} returns the values without modifying them.

Commenting out the assignment and instead executing the subroutine call produces this output:

at start: BAR '<absent>' at end: BAR '<undef>'
Somehow using the slice in the call to the subroutine has modified the values in the slice, creating an undef value for the key 'BAR'. How?

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://500144]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (7)
As of 2024-04-24 09:48 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found