I am seeing both of them used in this script I am trying to debug and the literature is just not clear. Can someone demystify this for me?
|
|
Dynamic Scoping. It is a neat concept. Many people don't use it, or understand it. Basically think of my as creating and anchoring a variable to one block of {}, A.K.A. scope.
So a my variable is what you are used to. whereas with dynamic scoping $var can be declared anywhere and used anywhere. So with local you basically suspend the use of that global variable, and use a "local value" to work with it. So local creates a temporary scope for a temporary variable.
This should print:
Sorry for any typo's I didn't run this code. |
||||
|
|
|
Well Google really works for you on this one: http://www.perlmonks.org/?node_id=94007 From the link:
Generally use my, it's faster and doesn't do anything kind of weird. |
||||||
|
|
|
From Unlike dynamic variables created by the local operator, lexical variables declared with my are totally hidden from the outside world, including any called subroutines. So, oversimplifying, |
||
|
|
|
|
"my" variables are visible in the current code block only. "local" variables are also visible where ever they were visible before. For example, if you say "my $x;" and call a sub-function, it cannot see that variable $x. But if you say "local $/;" (to null out the value of the record separator) then you change the way reading from files works in any functions you call. In practice, you almost always want "my", not "local". |
||
|
|
|
|
http://perldoc.perl.org/perlsub.html#Private-Variables-via-my()
http://perldoc.perl.org/perlsub.html#Temporary-Values-via-local()
I don't think this is at all unclear, other than to say that by "local to the enclosing block", what it means is that the original value is restored when the block is exited. |
|||
|
|
|
|
The short answer is that It's easier to understand
But that's just Perl doing what you mean. Normally you have something like this:
In that case, To understand This can be confusing at first, so consider the following example.
When You will almost always want to use |
|||
|
|
|
|
Quoting from Learning Perl:
So,
Calling |
||
|
|
|
|
Your confusion is understandable. Lexical scoping is fairly easy to understand but dynamic scoping is an unusual concept. The situation is made worse by the names
As a rule of thumb, use For a more thorough description see Mark Jason Dominus' article Coping with Scoping. |
||
|
|
|
|
local is an older method of localization, from the times when Perl had only dynamic scoping. Lexical scoping is much more natural for the programmer and much safer in many situations. my variables belong to the scope (block, package, or file) in which they are declared. local variables instead actually belong to a global namespace. If you refer to a variable $x with local, you are actually referring to $main::x, which is a global variable. Contrary to what it's name implies, all local does is push a new value onto a stack of values for $main::x until the end of this block, at which time the old value will be restored. That's a useful feature in and of itself, but it's not a good way to have local variables for a host of reasons (think what happens when you have threads! and think what happens when you call a routine that genuinely wants to use a global that you have localized!). However, it was the only way to have variables that looked like local variables back in the bad old days before Perl 5. We're still stuck with it. |
||
|
|
|
|
I can’t believe no one has linked to Mark Jason Dominus’ exhaustive treatises on the matter:
|
||
|
|
|
|
dinomite's example of using local to redefine the record delimiter is the only time I have ran across in a lot of perl programming. I live in a niche perl environment [security programming], but it really is a rarely used scope in my experience. |
||
|
|
|
|
The above script prints 6. But if we change local to my it will print 5. This is the difference. Simple. |
|||
|
|
