There's a point where I have problems, thought
Sorry, it is a rather tricky to get into words, but hopefully this code will illustrate the difference between then the length and the visibility of a scope
sub foo
{ ## start of visible scope
## $x a lexical var only accessable in the *visible* scope
my $x = "a lexical var";
## $y changed for the *length* of the scope
local $y = "a dynamic var";
print "foo(\$x): $x\n";
print "foo(\$y): $y\n";
bar($y);
} ## end of visible scope
sub bar {
## $x is undefined as it is being referenced outside the
## *visible* scope of foo()
## $y is still changed as the scope of foo() has not
## *exitted* yet
print "bar(\$x): $x\n";
print "bar(\$y): $y\n";
}
$y = "a global var";
foo();
## now foo() has exitted $y reverts to it's original value
print "main(\$y): $y\n";
__output__
foo($x): a lexical var
foo($y): a dynamic var
bar($x):
bar($y): a dynamic var
main($y): a global var
HTH
_________ broquaint
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|