Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: inheritance: constructors

by tobyink (Canon)
on Dec 01, 2012 at 12:48 UTC ( [id://1006596]=note: print w/replies, xml ) Need Help??


in reply to inheritance: constructors

This is why you ought to use Moose, or a Moose-work-alike such as Moo for pretty much any OO. You never need to write another constructor again!

use v5.14; use strict; use warnings; package Word { use Moo; has stem => (is => 'ro'); has english => (is => 'ro'); } package Noun { use Moo; extends 'Word'; has gender => (is => 'ro'); has nom_sg => (is => 'ro'); has gen_sg => (is => 'ro'); } my $w = Noun->new( stem => 'ai(=m-', english => 'blood', gender => 'n', nom_sg => 'a', gen_sg => 'atos', ); say $w->english;
perl -E'sub Monkey::do{say$_,for@_,do{($monkey=[caller(0)]->[3])=~s{::}{ }and$monkey}}"Monkey say"->Monkey::do'

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (4)
As of 2024-04-20 02:20 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found