Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re^2: Variables in Common parent class

by tobyink (Canon)
on Mar 10, 2013 at 06:34 UTC ( [id://1022647]=note: print w/replies, xml ) Need Help??


in reply to Re: Variables in Common parent class
in thread Variables in Common parent class

All generally good advice, but for the constructors in the children, I'd prefer:

sub new { my ($class, %params) = @_; my $self = $class->SUPER::new(%params); $self->{block_name} = $params{'block name'}; return $self; }

This ensures that the parent constructor is called as a method (and thus obeys inheritance).

There's no need to re-bless $self.

package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (4)
As of 2024-03-29 11:24 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found