Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: Multiple instances of the same base class

by Riales (Hermit)
on Feb 10, 2012 at 22:33 UTC ( [id://953139]=note: print w/replies, xml ) Need Help??


in reply to Multiple instances of the same base class

Usually, whenever you call a package's new method, it should already be returning a brand new instance of itself, so I would think what you have is already mostly correct.

Some other things I noticed though...

I think instead of:

use BasicX;
You actually want:
use base BasicX;

This is because use base establishes a ISA relationship for between your current class and the specified base class(es).

Beyond that, change this section:

my $newclass = BasicX->new(...);
To something like this:
my $newclass = $class->SUPER::new(...);
That should work properly.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://953139]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (5)
As of 2024-03-27 05:02 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found