Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re: Heisenberg Uncertainty Hash

by ikegami (Patriarch)
on Apr 26, 2005 at 22:51 UTC ( [id://451795]=note: print w/replies, xml ) Need Help??


in reply to Heisenberg Uncertainty Hash

You've been bitten by auto-vivification. It means that since $hash{'d'} is undefined and you're asking it to be a hash reference, Perl creates an anonymous hash for you.

You probably want

# If record 'd' does not exist: if (!$hash{'d'})

Not as likely, but you might even want

# If record 'd' does not exist, or # if record 'd' exists but has no field 'value': if (!$hash{'d'} || !exists($hash{'d'}{'value'}))

or

# If record 'd' does not exist, # if record 'd' exists but has no field 'value', or # if record 'd' exists and has field 'value' but is undefined: if (!$hash{'d'} || !defined($hash{'d'}{'value'}))

However, the equivalent to your code would be

# If record 'd' does not exist, # if record 'd' exists but has no field 'value', # if record 'd' exists and has field 'value' but is undefined, # if record 'd' exists and has field 'value' but is 0, # if record 'd' exists and has field 'value' but is "0", or # if record 'd' exists and has field 'value' but is '': if (!$hash{'d'} || !$hash{'d'}{'value'})

Thanks for reducing the problem to a its minimum form.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (4)
As of 2024-04-19 03:48 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found