Some More Helpful info...
By default Perl allows you to use variables without declaring them. This may be convenient for short scripts and one-liners.But in a longer unit of code such as a module it is wise to declare your variables both to catch typos and to constrain their accessibility appropriately from outside the module. The strict pragmaforces you to declare your variables.
If no import list is supplied, all possible restrictions are assumed. (This is the safest mode to operate in, but is sometimes too strict for casual programming.) Currently, there are three possible things to be strict about: "
subs", "
vars", and "
refs".
strict refs
This generates a runtime error if you use symbolic references
1. use strict 'refs';
2. $ref = \$foo;
3. print $$ref; # ok
4. $ref = "foo";
5. print $$ref; # runtime error; normally ok
6. $file = "STDOUT";
7. print $file "Hi!"; # error; note: no comma after $file
strict vars
This generates a compile-time error if you access a variable that wasn't declared via our or use vars , localized via my(), or wasn't fully qualified. Because this is to avoid variable suicide problems and subtle dynamic scoping issues, a merely local() variable isn't good enough.
1. use strict 'vars';
2. $X::foo = 1; # ok, fully qualified
3. my $foo = 10; # ok, my() var
4. local $foo = 9; # blows up
5.
6. package Cinna;
7. our $bar; # Declares $bar in current package
8. $bar = 'HgS'; # ok, global declared via pragma
strict subs
This disables the poetry optimization, generating a compile-time error if you try to use a bareword identifier that's not a subroutine, unless it is a simple identifier (no colons) and that it appears in curly braces or on the left hand side of the => symbol
1. use strict 'subs';
2. $SIG{PIPE} = Plumber; # blows up
3. $SIG{PIPE} = "Plumber"; # just fine: quoted string is always ok
4. $SIG{PIPE} = \&Plumber; # preferred form