http://www.perlmonks.org?node_id=241133


in reply to Re: Loading class
in thread Loading class

Perl seems to do some magic with import method call. Even if you don't define it always work:
$ perl -e 'XXX->xxx' Can't locate object method "xxx" via package "XXX" (perhaps you forgot + to load "XXX"?) at -e line 1. $ perl -e 'XXX->import' # no error

--
Ilya Martynov, ilya@iponweb.net
CTO IPonWEB (UK) Ltd
Quality Perl Programming and Unix Support UK managed @ offshore prices - http://www.iponweb.net
Personal website - http://martynov.org

Replies are listed 'Best First'.
Re: Re: Re: Loading class
by broquaint (Abbot) on Mar 07, 2003 at 13:56 UTC
    Perl seems to do some magic with import method call
    Indeedey, perl does some groovy AUTOLOAD magic at the source level. See. import() magic for more info on the matter.
    HTH

    _________
    broquaint