Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re: Overriding arguments in Class::Std superclass constructors

by fce2 (Sexton)
on Aug 29, 2006 at 08:08 UTC ( [id://570105]=note: print w/replies, xml ) Need Help??


in reply to Overriding arguments in Class::Std superclass constructors

For any future searchers ..

I saw Damian yesterday and chatted to him about it. The way to do it is for the subclass to override new:

sub new { my ($class, $args) = @_; $args->{value} = 23; return $class->SUPER::new($args); }
new() is actually installed into the parent class by Class::Std (rather than inherited), and because its receiving the caller, its able to do the right thing.

This is a workaround though. The next release of Class-Std will have a PREBUILD() method that runs before BUILD(). It goes in the opposite direction ("up" the inheritance tree) and allows the arguments to be changed before BUILD() gets them. So this will simply become:

sub PREBUILD { my ($class, $args) = @_; return { %{$args}, value => 23 }; }

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (3)
As of 2024-04-26 00:55 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found