The whole thing about my variables is a bit difficult to get your head around. Advanced Perl Programming does a wonderful job of explaining it. This is some of the wisdom I think I have gained on the subject...not 100% sure of course....

Basically, a my variable is a lexical varaible. It has nothing to do with packages, so forget about that. Think in terms of lexical scope. A file is a lexical scope. A block is a lexical scope( whatever is inside a pair of { } ). A package is _not_ a lexical scope. It just seems that way, because everyone usually puts one and only one package in a file, basically creating a lexical scope for that package.

So, for your specific example, put my $image inside sub one, and you are game. If you want it to persist each time you call one, do it like this:

Package Pack; { my $image; sub one { ($image)=@_; } } sub two { print $image; }
Notice the extra set of braces. We have just created a scope for $image, so that one can see it, but two can't. Hope this clears things up a bit, goldclaw

In reply to Re: Instance Module by goldclaw
in thread Instance Module by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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, details, 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, summary, 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.