in reply to Abstract Factory

package Factory; sub get_new { my( $class, $type ) = @_; return $type->new; }
Am I missing anything?

Replies are listed 'Best First'.
Re^2: Abstract Factory
by Khatri (Scribe) on Oct 05, 2005 at 17:10 UTC
    so $class will have name of the class and $type will have type of class suppose I have class A, clas B,... if I want to have new class a of type A should I get by get_new(a,A); is that correct ?
      Not quite. It's designed to be a class method, so you would call it like: Factory->get_new("A") which implicitly sends "Factory" as the first argument to the method.