in reply to Re: Re: Re: $class = ref $class || $class
in thread Constructor/Factory Orthodoxy

@INC is only consulted when doing a use or require. It's not consulted for object or method calls.

Don't expect there to be much difference in speed between $obj -> new and Class -> new. The overhead of calling the method dwarves any finding of the class.

Abigail