I know what my is in Perl. It defines a variable that exists only in the scope of the block in which it is defined. What does our do? How does it differ from my?
|
|
||||
|
|
|
Great question: How does In Summary: Available since Perl 5,
On the other hand,
Declaring a variable with For example, the formal, qualified name for variable |
|||||||
|
|
The PerlMonks and PerlDoc links from cartman and Olafur are a great reference - below is my crack at a summary:
Just to round it out, |
|||
|
|
|
An example:
|
|||||
|
|
my is used for local variables, where as our is used for global variables. More reading over Variable Scoping in Perl: the basics . |
|||||
|
|
Coping with Scoping is a good overview of Perl scoping rules. It's old enough that The article talks about package variables and dynamic scope and how that differs from lexical variables and lexical scope. |
|||
|
|
|
The perldoc has a good definition of our.
|
||||
|
|
|
This is only somewhat related to the question, but I've just discovered a (to me) obscure bit of perl syntax that you can use with "our" (package) variables that you can't use with "my" (local) variables.
Output:
This won't work if you change 'our' to 'my'. |
|||
|
|
|
|||
|