http://qs321.pair.com?node_id=847500


in reply to Re^2: loading modules using 'use'
in thread loading modules using 'use'

I'm unsure if i got exactly what you are asking, but let me give you some examples. Let's start with a fairly common thing:

use CGI qw/:standard/; print header;

So far, so simple. Now, what perl is doing here, can also be written like this:

BEGIN { require CGI; CGI->import( ':standard' ); } print header;

You'll notice, this gives you the same output as the first example. Now let's see what happens, when we don't use the BEGIN block.

require CGI; CGI->import( ':standard' ); print header;

The header is not printed out, if we run this. Activating the warnings gives a few hints to what is going on.

Unquoted string "header" may clash with future reserved word at test.p +l line 12. Name "main::header" used only once: possible typo at test.pl line 12. print() on unopened filehandle header at test.pl line 12.

Now what happened here?!? perl doesn't know how to handle header anymore, because at the compile time of the program, the subroutine is not yet known to perl. It gets imported at runtime, since require doesn't do anything at compile time, and perl thinks, handler is supposed to be a file handle.

Hope this cleared some thing up for you