vote up 10 vote down star
3

Is there a difference between the two examples below for beginning a Perl script? If so, when would I use one over the other?

example 1:

#!/usr/bin/perl

use warnings;

example 2:

#!/usr/bin/perl -w
flag

6 Answers

vote up 28 vote down check

Using the switch will enable all warnings in all modules used by your program. Using the pragma you enable it only in that specific module (or script). Ideally, you use warnings in all your modules, but often that's not the case. Using the switch can get you a lot of warnings when you use a third party module that isn't warnings-safe.

So, ideally it doesn't matter, but pragmatically it's often preferable for your end-users not to use the switch but the pragma.

link|flag
vote up 14 vote down

The -w command-line switch turns on warnings globally for the entire interpreter. On the other hand, use warnings is a "lexical pragma" and only applies in the lexical scope in which it's used. Usually, you put that at the top of a file so it applies to the whole file, but you can also scope it to particular blocks. In addition, you can use no warnings to temporarily turn them off inside a block, in cases where you need to do otherwise warning-generating behavior. You can't do that if you've got -w on.

For details about how lexical warnings work, including how to turn various subsets of them on and off, see the perllexwarn document.

link|flag
Your point on "no warnings" is what I expected, but a quick test (perl -w -e "no warnings; print $a;") showed that, at least on my perl, "no warnings" does still work even with -w. – Dave Sherohman Oct 21 '08 at 22:55
vote up 9 vote down

"-w" is older and used to be the only way to turn warnings on (actually "-w" just enables the global $^W variable). "use warnings;" is now preferable (as of version 5.6.0 and later) because (as already mentioned) it has a lexical instead of global scope, and you can turn on/off specific warnings. And don't forget to also begin with "use strict;" :-)

link|flag
As of 5.6.0. And there's warnings::compat to help if you still care about 5.5. – Schwern Oct 21 '08 at 20:13
Fixed. I knew I shoulda just said "5.6" :-) – runrig Oct 21 '08 at 22:49
But why would anyone want to use 5.6.0 anyway? :-) – runrig Oct 22 '08 at 16:20
vote up -5 vote down

Do both! Always!

link|flag
Why are you voting this down? – JDrago Feb 27 at 21:48
vote up 5 vote down

Another distinction worth noting, is that the "use warnings" pragma also lets you select specific warnings to enable (and likewise, "no warnings" allows you to select warnings to disable).

link|flag
vote up 0 vote down

In addition to enabling/disabling specific assertions using the pragma, you can also promote some or all warnings to errors:

use strict;
use warnings FATAL => 'all', NONFATAL => 'exec';
link|flag
That is a good idea during development, but it may not be such a good idea in deployment. – Leon Timmermans Oct 24 '08 at 0:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.