Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re^2: Inheritance in Perl5

by EvanCarroll (Chaplain)
on Aug 08, 2009 at 17:46 UTC ( [id://787082]=note: print w/replies, xml ) Need Help??


in reply to Re: Inheritance in Perl5
in thread Inheritance in Perl5

The moose way you speak of:
package Animal; use Moose; has [qw/name age/] => ( isa => 'Str', is => 'rw' ); package Horse; use Moose; extends 'Animal'; sub present { my $self = shift; print $self->isa('Animal') ? "I am an animal" : "I am not animal" }
With that said, I think there is something seriously wrong if you want your subclass to confirm that it inherits from the parent class in a method ;)


Evan Carroll
The most respected person in the whole perl community.
www.EvanCarroll.com

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (4)
As of 2024-04-19 14:50 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found