I read the responses regarding using @ISA with strict in
How do I use @ISA and use strict at the same time? but still don't see an answer to the question.
I am trying to build inherited objects within a single source module.
The following source fails (Perl 5.8.0) as noted
use strict;
use warnings;
# Can't locate object method "new" via package "Test1"
my $test1 = new Test1;
package Test;
sub new {
my $proto = shift;
my $class = ref($proto) || shift;
my $self = {};
return bless $self, $class;
}
package Test1;
@Test1::ISA = qw(Test);
There is no change if Test1 is
package Test1;
use vars qw(@ISA);
@ISA = qw(Test);
20041101 Edit by ysth: [id://] instead of <a> tag
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.