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

Re: concatenating partially uninitialized values

by Arguile (Hermit)
on Jun 18, 2003 at 18:05 UTC ( [id://266935]=note: print w/replies, xml ) Need Help??


in reply to concatenating partially uninitialized values

If you know that you specifically want to use uninitialised variables, turn that warning off. It’s meant to help, not hinder you.

no warnings qw(uninitialized);

In this case, your two code snippets produce different results (the hyphen-minus is omitted in the second) so I wouldn’t suggest this technique. Be aware it’s there if you need it though.

Example

Before 5.6 this was only possible using $^W which turned off all warnings. Be very careful if you do that.

use warnings; # This will generate a warning. print undef; { no warnings qw(uninitialized); # This won't. print undef; }

See Also

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (4)
As of 2024-04-19 13:41 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found