Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re: use warnings => Use of uninitialized value...

by davorg (Chancellor)
on May 24, 2006 at 08:26 UTC ( [id://551299]=note: print w/replies, xml ) Need Help??


in reply to use warnings => Use of uninitialized value...

An "uninitialised value" warning means that you tried to get data out of a variable that you hadn't put any data into. That sounds like a bug to me. Sure, it might be a pretty harmless bug and, yes, Perl will almost certainly do the right thing when faced with that situation, but it's still a bug.

How hard would it be to fix the bug in your code? To make sure that variables that you try to get data out of have always got data in them - even if it's just an empty string.

Personally I'd make the effort and fix the bugs. But it's your code and it's up to you (or your manager) what you do in this situation. If you want to just ignore these bugs, then you might find no warnings 'uninitialised' to be useful to you. I don't recommend it, but the functionality is there.

--
<http://dave.org.uk>

"The first rule of Perl club is you do not talk about Perl club."
-- Chip Salzenberg

  • Comment on Re: use warnings => Use of uninitialized value...

Log In?
Username:
Password:

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

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

    No recent polls found