Here's an example of how to "access a common variable but without resorting to globals":
use strict;
use warnings;
package A;
{
my $maxlengths = {
tinytext => 100,
longtext => 2000,
};
sub max_tiny_text { return $maxlengths->{tinytext}; }
sub max_long_text { return $maxlengths->{longtext}; }
}
package B;
use base 'A';
print 'From B: ', A->max_tiny_text(), "\n";
print 'From B: ', A->max_long_text(), "\n";
package main;
print 'From main: ', B->max_tiny_text(), "\n";
print 'From main: ', B->max_long_text(), "\n";
The output from this is:
From B: 100
From B: 2000
From main: 100
From main: 2000
Here's a quick rundown of what I've done here and why.
-
I've removed Exporter. Take a look at the Selecting What To Export section in that documentation.
-
I've set up class methods (max_tiny_text() and max_long_text()) to return the data.
-
The class data ($maxlengths) is lexically scoped with my inside a block such that it is only visible to the class methods. If you attempt to access $maxlengths within package A but outside that block, you'll get a compilation error.
I've aimed to keep the same general framework you presented. There are (as usual) more ways to do it. :-)
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.