Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: Debugging "Use of uninitialized value" warnings.

by dave_the_m (Monsignor)
on Apr 04, 2007 at 09:55 UTC ( [id://608235]=note: print w/replies, xml ) Need Help??


in reply to Debugging "Use of uninitialized value" warnings.

This is not currently possible. However, the development version of perl (from 5.9.2 onwards) attempts to determine which variable was undefined; it can't always, as this example shows:

use strict; use warnings; my %foo; my %bar; $bar{'one'} = 1; my ($x,$y); $x = "$bar{'one'} $foo{'one'}"; $x = "$y $foo{'one'}"; $x = "xxx $foo{'one'}"; __END__ Use of uninitialized value in concatenation (.) or string at /tmp/p li +ne 10. Use of uninitialized value $y in concatenation (.) or string at /tmp/p + line 11. Use of uninitialized value in concatenation (.) or string at /tmp/p li +ne 11. Use of uninitialized value $foo{"one"} in concatenation (.) or string +at /tmp/p line 12.
Dave.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (3)
As of 2024-04-26 00:07 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found