Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: OO: Building an object of the right type based on a parameter

by lachoy (Parson)
on Mar 11, 2004 at 04:44 UTC ( [id://335706]=note: print w/replies, xml ) Need Help??


in reply to OO: Building an object of the right type based on a parameter

Class::Factory allows you to decouple these things -- you can map a name/type to a class name and initialize a factory with them, then call 'new' on the factory and pass it the name/type and get back an object of the right type.

Here's an example, untested. (See the docs for more.)

package InvoiceCalculatorFactory; use base qw( Class::Factory ); __PACKAGE__->add_factory_type( old_school => 'InvoiceCalculator::OldSchool' ); __PACKAGE__->add_factory_type( new_school => 'InvoiceCalculator::NewSchool' ); __PACKAGE__->add_factory_type( delinquent => 'InvoiceCalculator::Delinquent' );

And then, assuming your client object has a field 'type' or something, you can do:

my $calculator = InvoiceCalculatorFactory->new( $client->type );

Good luck!

Chris
M-x auto-bs-mode

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (3)
As of 2024-04-19 17:49 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found