in reply to Re^3: Perl array declaring
in thread Perl array declaring
Variables can be declared as many times as you like...
True only for global variables, and even then, not without warnings. Change your 'our' to 'my' and your program no longer works. You are creating new variables with the same name. Warnings inform you that the new variable masks an earlier declaration.
I surely understand what you meant to say and agree with what you intended to say, Bill, but lexical variables can indeed be declared as many times as you like, provided they are not declarred in the same lexical scope. For example, the following code declares the same lexical variable four times without any error or warning:
use strict; use warnings; my $var = 1; { my $var = 2; print $var, "\n", } print "$var \n"; foreach my $var (1..5) { print $var, "\n"; } print double(7); sub double {my $var = shift; return 2 * $var;}
and happily prints:
$ perl scope.pl 2 1 1 2 3 4 5 14
Which does not mean at all that I recommend doing that. It can be done, and is useful sometimes, but we should avoid leading to obfuscation.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Perl array declaring
by BillKSmith (Monsignor) on Jun 02, 2013 at 03:51 UTC |